diff --git a/grammar.js b/grammar.js index 373325d3..fb3ecee6 100644 --- a/grammar.js +++ b/grammar.js @@ -244,7 +244,7 @@ module.exports = grammar({ class_declaration: $ => prec.right(seq( optional(field('attributes', $.attribute_list)), - optional($.class_modifier), + optional(field('modifier', choice($.final_modifier, $.abstract_modifier))), keyword('class'), field('name', $.name), optional($.base_clause), @@ -259,10 +259,8 @@ module.exports = grammar({ '}' ), - class_modifier: $ => choice( - keyword('abstract'), - keyword('final') - ), + final_modifier: $ => keyword('final'), + abstract_modifier: $ => keyword('abstract'), class_interface_clause: $ => seq( keyword('implements'), @@ -280,6 +278,7 @@ module.exports = grammar({ _class_const_declaration: $ => seq( optional(field('attributes', $.attribute_list)), + optional(field('modifier', $.final_modifier)), $._const_declaration ), @@ -298,12 +297,13 @@ module.exports = grammar({ $._semicolon ), - _modifier: $ => choice( + _modifier: $ => prec.left(choice( $.var_modifier, $.visibility_modifier, $.static_modifier, - $.class_modifier - ), + $.final_modifier, + $.abstract_modifier + )), property_element: $ => seq( $.variable_name, optional($.property_initializer) diff --git a/src/grammar.json b/src/grammar.json index c64d0ff5..9b0c3b54 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -971,8 +971,21 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "class_modifier" + "type": "FIELD", + "name": "modifier", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "final_modifier" + }, + { + "type": "SYMBOL", + "name": "abstract_modifier" + } + ] + } }, { "type": "BLANK" @@ -1063,28 +1076,23 @@ } ] }, - "class_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" - }, - "named": false, - "value": "abstract" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[fF][iI][nN][aA][lL]" - }, - "named": false, - "value": "final" - } - ] + "final_modifier": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[fF][iI][nN][aA][lL]" + }, + "named": false, + "value": "final" + }, + "abstract_modifier": { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[aA][bB][sS][tT][rR][aA][cC][tT]" + }, + "named": false, + "value": "abstract" }, "class_interface_clause": { "type": "SEQ", @@ -1210,6 +1218,22 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "modifier", + "content": { + "type": "SYMBOL", + "name": "final_modifier" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_const_declaration" @@ -1345,25 +1369,33 @@ ] }, "_modifier": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "var_modifier" - }, - { - "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "SYMBOL", - "name": "static_modifier" - }, - { - "type": "SYMBOL", - "name": "class_modifier" - } - ] + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "var_modifier" + }, + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "SYMBOL", + "name": "static_modifier" + }, + { + "type": "SYMBOL", + "name": "final_modifier" + }, + { + "type": "SYMBOL", + "name": "abstract_modifier" + } + ] + } }, "property_element": { "type": "SEQ", diff --git a/src/node-types.json b/src/node-types.json index 6b1fc873..cf17ef22 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -321,6 +321,11 @@ } ] }, + { + "type": "abstract_modifier", + "named": true, + "fields": {} + }, { "type": "anonymous_function_creation_expression", "named": true, @@ -1178,6 +1183,20 @@ } ] }, + "modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "abstract_modifier", + "named": true + }, + { + "type": "final_modifier", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, @@ -1200,10 +1219,6 @@ { "type": "class_interface_clause", "named": true - }, - { - "type": "class_modifier", - "named": true } ] } @@ -1227,11 +1242,6 @@ ] } }, - { - "type": "class_modifier", - "named": true, - "fields": {} - }, { "type": "clone_expression", "named": true, @@ -1326,6 +1336,16 @@ "named": true } ] + }, + "modifier": { + "multiple": false, + "required": false, + "types": [ + { + "type": "final_modifier", + "named": true + } + ] } }, "children": { @@ -1614,6 +1634,11 @@ ] } }, + { + "type": "final_modifier", + "named": true, + "fields": {} + }, { "type": "finally_clause", "named": true, @@ -2446,7 +2471,11 @@ "required": false, "types": [ { - "type": "class_modifier", + "type": "abstract_modifier", + "named": true + }, + { + "type": "final_modifier", "named": true }, { @@ -3061,7 +3090,11 @@ "required": true, "types": [ { - "type": "class_modifier", + "type": "abstract_modifier", + "named": true + }, + { + "type": "final_modifier", "named": true }, { @@ -4495,11 +4528,11 @@ }, { "type": "float", - "named": true + "named": false }, { "type": "float", - "named": false + "named": true }, { "type": "fn", @@ -4563,11 +4596,11 @@ }, { "type": "integer", - "named": true + "named": false }, { "type": "integer", - "named": false + "named": true }, { "type": "interface", @@ -4599,11 +4632,11 @@ }, { "type": "null", - "named": false + "named": true }, { "type": "null", - "named": true + "named": false }, { "type": "object", diff --git a/src/parser.c b/src/parser.c index ada12578..5bd7e4ed 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2110 +#define STATE_COUNT 2116 #define LARGE_STATE_COUNT 532 -#define SYMBOL_COUNT 334 +#define SYMBOL_COUNT 335 #define ALIAS_COUNT 0 #define TOKEN_COUNT 163 #define EXTERNAL_TOKEN_COUNT 3 -#define FIELD_COUNT 20 +#define FIELD_COUNT 21 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 104 +#define PRODUCTION_ID_COUNT 106 enum { sym_name = 1, @@ -39,8 +39,8 @@ enum { aux_sym_interface_declaration_token1 = 20, aux_sym_base_clause_token1 = 21, aux_sym_class_declaration_token1 = 22, - aux_sym_class_modifier_token1 = 23, - aux_sym_class_modifier_token2 = 24, + aux_sym_final_modifier_token1 = 23, + aux_sym_abstract_modifier_token1 = 24, aux_sym_class_interface_clause_token1 = 25, sym_var_modifier = 26, aux_sym_use_instead_of_clause_token1 = 27, @@ -200,156 +200,157 @@ enum { sym_base_clause = 181, sym_class_declaration = 182, sym_declaration_list = 183, - sym_class_modifier = 184, - sym_class_interface_clause = 185, - sym__member_declaration = 186, - sym_const_declaration = 187, - sym__class_const_declaration = 188, - sym__const_declaration = 189, - sym_property_declaration = 190, - sym__modifier = 191, - sym_property_element = 192, - sym_property_initializer = 193, - sym_method_declaration = 194, - sym_static_modifier = 195, - sym_use_declaration = 196, - sym_use_list = 197, - sym_use_instead_of_clause = 198, - sym_use_as_clause = 199, - sym_visibility_modifier = 200, - sym_function_definition = 201, - sym__function_definition_header = 202, - sym_arrow_function = 203, - sym_formal_parameters = 204, - sym_property_promotion_parameter = 205, - sym_simple_parameter = 206, - sym_variadic_parameter = 207, - sym__type = 208, - sym__types = 209, - sym_named_type = 210, - sym_optional_type = 211, - sym_union_type = 212, - sym_primitive_type = 213, - sym_cast_type = 214, - sym__return_type = 215, - sym_const_element = 216, - sym_echo_statement = 217, - sym_unset_statement = 218, - sym_declare_statement = 219, - sym_declare_directive = 220, - sym_try_statement = 221, - sym_catch_clause = 222, - sym_type_list = 223, - sym_finally_clause = 224, - sym_goto_statement = 225, - sym_continue_statement = 226, - sym_break_statement = 227, - sym_return_statement = 228, - sym_throw_expression = 229, - sym_while_statement = 230, - sym_do_statement = 231, - sym_for_statement = 232, - sym__expressions = 233, - sym_sequence_expression = 234, - sym_foreach_statement = 235, - sym_foreach_pair = 236, - sym_if_statement = 237, - sym_colon_block = 238, - sym_else_if_clause = 239, - sym_else_clause = 240, - sym_else_if_clause_2 = 241, - sym_else_clause_2 = 242, - sym_match_expression = 243, - sym_match_block = 244, - sym_match_condition_list = 245, - sym_match_conditional_expression = 246, - sym_match_default_expression = 247, - sym_switch_statement = 248, - sym_switch_block = 249, - sym_case_statement = 250, - sym_default_statement = 251, - sym_compound_statement = 252, - sym_named_label_statement = 253, - sym_expression_statement = 254, - sym__expression = 255, - sym__unary_expression = 256, - sym_unary_op_expression = 257, - sym_exponentiation_expression = 258, - sym_clone_expression = 259, - sym__primary_expression = 260, - sym_parenthesized_expression = 261, - sym_class_constant_access_expression = 262, - sym_print_intrinsic = 263, - sym_anonymous_function_creation_expression = 264, - sym_anonymous_function_use_clause = 265, - sym_object_creation_expression = 266, - sym_update_expression = 267, - sym_cast_expression = 268, - sym_cast_variable = 269, - sym_assignment_expression = 270, - sym_conditional_expression = 271, - sym_augmented_assignment_expression = 272, - sym_member_access_expression = 273, - sym_nullsafe_member_access_expression = 274, - sym_scoped_property_access_expression = 275, - sym_list_literal = 276, - sym__list_destructing = 277, - sym__array_destructing = 278, - sym_function_call_expression = 279, - sym_scoped_call_expression = 280, - sym__scope_resolution_qualifier = 281, - sym_relative_scope = 282, - sym_arguments = 283, - sym_argument = 284, - sym_member_call_expression = 285, - sym_nullsafe_member_call_expression = 286, - sym_variadic_unpacking = 287, - sym_subscript_expression = 288, - sym__dereferencable_expression = 289, - sym_array_creation_expression = 290, - sym_attribute_list = 291, - sym_attribute = 292, - sym__string = 293, - sym_dynamic_variable_name = 294, - sym_variable_name = 295, - sym_yield_expression = 296, - sym_array_element_initializer = 297, - sym_binary_expression = 298, - sym_include_expression = 299, - sym_include_once_expression = 300, - sym_require_expression = 301, - sym_require_once_expression = 302, - sym__reserved_identifier = 303, - aux_sym_program_repeat1 = 304, - aux_sym_text_repeat1 = 305, - aux_sym_function_static_declaration_repeat1 = 306, - aux_sym_global_declaration_repeat1 = 307, - aux_sym_namespace_use_declaration_repeat1 = 308, - aux_sym_namespace_name_repeat1 = 309, - aux_sym_namespace_use_group_repeat1 = 310, - aux_sym_base_clause_repeat1 = 311, - aux_sym_declaration_list_repeat1 = 312, - aux_sym__const_declaration_repeat1 = 313, - aux_sym_property_declaration_repeat1 = 314, - aux_sym_property_declaration_repeat2 = 315, - aux_sym_use_list_repeat1 = 316, - aux_sym_formal_parameters_repeat1 = 317, - aux_sym_union_type_repeat1 = 318, - aux_sym_unset_statement_repeat1 = 319, - aux_sym_try_statement_repeat1 = 320, - aux_sym_type_list_repeat1 = 321, - aux_sym_if_statement_repeat1 = 322, - aux_sym_if_statement_repeat2 = 323, - aux_sym_match_block_repeat1 = 324, - aux_sym_match_condition_list_repeat1 = 325, - aux_sym_switch_block_repeat1 = 326, - aux_sym_anonymous_function_use_clause_repeat1 = 327, - aux_sym__list_destructing_repeat1 = 328, - aux_sym__array_destructing_repeat1 = 329, - aux_sym_arguments_repeat1 = 330, - aux_sym_array_creation_expression_repeat1 = 331, - aux_sym_attribute_list_repeat1 = 332, - aux_sym_attribute_list_repeat2 = 333, + sym_final_modifier = 184, + sym_abstract_modifier = 185, + sym_class_interface_clause = 186, + sym__member_declaration = 187, + sym_const_declaration = 188, + sym__class_const_declaration = 189, + sym__const_declaration = 190, + sym_property_declaration = 191, + sym__modifier = 192, + sym_property_element = 193, + sym_property_initializer = 194, + sym_method_declaration = 195, + sym_static_modifier = 196, + sym_use_declaration = 197, + sym_use_list = 198, + sym_use_instead_of_clause = 199, + sym_use_as_clause = 200, + sym_visibility_modifier = 201, + sym_function_definition = 202, + sym__function_definition_header = 203, + sym_arrow_function = 204, + sym_formal_parameters = 205, + sym_property_promotion_parameter = 206, + sym_simple_parameter = 207, + sym_variadic_parameter = 208, + sym__type = 209, + sym__types = 210, + sym_named_type = 211, + sym_optional_type = 212, + sym_union_type = 213, + sym_primitive_type = 214, + sym_cast_type = 215, + sym__return_type = 216, + sym_const_element = 217, + sym_echo_statement = 218, + sym_unset_statement = 219, + sym_declare_statement = 220, + sym_declare_directive = 221, + sym_try_statement = 222, + sym_catch_clause = 223, + sym_type_list = 224, + sym_finally_clause = 225, + sym_goto_statement = 226, + sym_continue_statement = 227, + sym_break_statement = 228, + sym_return_statement = 229, + sym_throw_expression = 230, + sym_while_statement = 231, + sym_do_statement = 232, + sym_for_statement = 233, + sym__expressions = 234, + sym_sequence_expression = 235, + sym_foreach_statement = 236, + sym_foreach_pair = 237, + sym_if_statement = 238, + sym_colon_block = 239, + sym_else_if_clause = 240, + sym_else_clause = 241, + sym_else_if_clause_2 = 242, + sym_else_clause_2 = 243, + sym_match_expression = 244, + sym_match_block = 245, + sym_match_condition_list = 246, + sym_match_conditional_expression = 247, + sym_match_default_expression = 248, + sym_switch_statement = 249, + sym_switch_block = 250, + sym_case_statement = 251, + sym_default_statement = 252, + sym_compound_statement = 253, + sym_named_label_statement = 254, + sym_expression_statement = 255, + sym__expression = 256, + sym__unary_expression = 257, + sym_unary_op_expression = 258, + sym_exponentiation_expression = 259, + sym_clone_expression = 260, + sym__primary_expression = 261, + sym_parenthesized_expression = 262, + sym_class_constant_access_expression = 263, + sym_print_intrinsic = 264, + sym_anonymous_function_creation_expression = 265, + sym_anonymous_function_use_clause = 266, + sym_object_creation_expression = 267, + sym_update_expression = 268, + sym_cast_expression = 269, + sym_cast_variable = 270, + sym_assignment_expression = 271, + sym_conditional_expression = 272, + sym_augmented_assignment_expression = 273, + sym_member_access_expression = 274, + sym_nullsafe_member_access_expression = 275, + sym_scoped_property_access_expression = 276, + sym_list_literal = 277, + sym__list_destructing = 278, + sym__array_destructing = 279, + sym_function_call_expression = 280, + sym_scoped_call_expression = 281, + sym__scope_resolution_qualifier = 282, + sym_relative_scope = 283, + sym_arguments = 284, + sym_argument = 285, + sym_member_call_expression = 286, + sym_nullsafe_member_call_expression = 287, + sym_variadic_unpacking = 288, + sym_subscript_expression = 289, + sym__dereferencable_expression = 290, + sym_array_creation_expression = 291, + sym_attribute_list = 292, + sym_attribute = 293, + sym__string = 294, + sym_dynamic_variable_name = 295, + sym_variable_name = 296, + sym_yield_expression = 297, + sym_array_element_initializer = 298, + sym_binary_expression = 299, + sym_include_expression = 300, + sym_include_once_expression = 301, + sym_require_expression = 302, + sym_require_once_expression = 303, + sym__reserved_identifier = 304, + aux_sym_program_repeat1 = 305, + aux_sym_text_repeat1 = 306, + aux_sym_function_static_declaration_repeat1 = 307, + aux_sym_global_declaration_repeat1 = 308, + aux_sym_namespace_use_declaration_repeat1 = 309, + aux_sym_namespace_name_repeat1 = 310, + aux_sym_namespace_use_group_repeat1 = 311, + aux_sym_base_clause_repeat1 = 312, + aux_sym_declaration_list_repeat1 = 313, + aux_sym__const_declaration_repeat1 = 314, + aux_sym_property_declaration_repeat1 = 315, + aux_sym_property_declaration_repeat2 = 316, + aux_sym_use_list_repeat1 = 317, + aux_sym_formal_parameters_repeat1 = 318, + aux_sym_union_type_repeat1 = 319, + aux_sym_unset_statement_repeat1 = 320, + aux_sym_try_statement_repeat1 = 321, + aux_sym_type_list_repeat1 = 322, + aux_sym_if_statement_repeat1 = 323, + aux_sym_if_statement_repeat2 = 324, + aux_sym_match_block_repeat1 = 325, + aux_sym_match_condition_list_repeat1 = 326, + aux_sym_switch_block_repeat1 = 327, + aux_sym_anonymous_function_use_clause_repeat1 = 328, + aux_sym__list_destructing_repeat1 = 329, + aux_sym__array_destructing_repeat1 = 330, + aux_sym_arguments_repeat1 = 331, + aux_sym_array_creation_expression_repeat1 = 332, + aux_sym_attribute_list_repeat1 = 333, + aux_sym_attribute_list_repeat2 = 334, }; static const char *ts_symbol_names[] = { @@ -376,8 +377,8 @@ static const char *ts_symbol_names[] = { [aux_sym_interface_declaration_token1] = "interface", [aux_sym_base_clause_token1] = "extends", [aux_sym_class_declaration_token1] = "class", - [aux_sym_class_modifier_token1] = "abstract", - [aux_sym_class_modifier_token2] = "final", + [aux_sym_final_modifier_token1] = "final", + [aux_sym_abstract_modifier_token1] = "abstract", [aux_sym_class_interface_clause_token1] = "implements", [sym_var_modifier] = "var_modifier", [aux_sym_use_instead_of_clause_token1] = "insteadof", @@ -537,7 +538,8 @@ static const char *ts_symbol_names[] = { [sym_base_clause] = "base_clause", [sym_class_declaration] = "class_declaration", [sym_declaration_list] = "declaration_list", - [sym_class_modifier] = "class_modifier", + [sym_final_modifier] = "final_modifier", + [sym_abstract_modifier] = "abstract_modifier", [sym_class_interface_clause] = "class_interface_clause", [sym__member_declaration] = "_member_declaration", [sym_const_declaration] = "const_declaration", @@ -713,8 +715,8 @@ static TSSymbol ts_symbol_map[] = { [aux_sym_interface_declaration_token1] = aux_sym_interface_declaration_token1, [aux_sym_base_clause_token1] = aux_sym_base_clause_token1, [aux_sym_class_declaration_token1] = aux_sym_class_declaration_token1, - [aux_sym_class_modifier_token1] = aux_sym_class_modifier_token1, - [aux_sym_class_modifier_token2] = aux_sym_class_modifier_token2, + [aux_sym_final_modifier_token1] = aux_sym_final_modifier_token1, + [aux_sym_abstract_modifier_token1] = aux_sym_abstract_modifier_token1, [aux_sym_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, @@ -874,7 +876,8 @@ static TSSymbol ts_symbol_map[] = { [sym_base_clause] = sym_base_clause, [sym_class_declaration] = sym_class_declaration, [sym_declaration_list] = sym_declaration_list, - [sym_class_modifier] = sym_class_modifier, + [sym_final_modifier] = sym_final_modifier, + [sym_abstract_modifier] = sym_abstract_modifier, [sym_class_interface_clause] = sym_class_interface_clause, [sym__member_declaration] = sym__member_declaration, [sym_const_declaration] = sym_const_declaration, @@ -1119,11 +1122,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_class_modifier_token1] = { + [aux_sym_final_modifier_token1] = { .visible = true, .named = false, }, - [aux_sym_class_modifier_token2] = { + [aux_sym_abstract_modifier_token1] = { .visible = true, .named = false, }, @@ -1763,7 +1766,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_class_modifier] = { + [sym_final_modifier] = { + .visible = true, + .named = true, + }, + [sym_abstract_modifier] = { .visible = true, .named = true, }, @@ -2378,17 +2385,18 @@ enum { field_default_value = 7, field_function = 8, field_left = 9, - field_name = 10, - field_object = 11, - field_operator = 12, - field_parameters = 13, - field_return_expression = 14, - field_return_type = 15, - field_right = 16, - field_scope = 17, - field_type = 18, - field_value = 19, - field_visibility = 20, + field_modifier = 10, + field_name = 11, + field_object = 12, + field_operator = 13, + field_parameters = 14, + field_return_expression = 15, + field_return_type = 16, + field_right = 17, + field_scope = 18, + field_type = 19, + field_value = 20, + field_visibility = 21, }; static const char *ts_field_names[] = { @@ -2402,6 +2410,7 @@ static const char *ts_field_names[] = { [field_default_value] = "default_value", [field_function] = "function", [field_left] = "left", + [field_modifier] = "modifier", [field_name] = "name", [field_object] = "object", [field_operator] = "operator", @@ -2441,80 +2450,82 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [24] = {.index = 47, .length = 1}, [25] = {.index = 48, .length = 3}, [26] = {.index = 51, .length = 2}, - [27] = {.index = 53, .length = 1}, - [28] = {.index = 54, .length = 2}, - [29] = {.index = 56, .length = 2}, - [30] = {.index = 58, .length = 1}, - [31] = {.index = 59, .length = 3}, - [32] = {.index = 62, .length = 3}, - [34] = {.index = 65, .length = 2}, - [35] = {.index = 67, .length = 2}, - [36] = {.index = 69, .length = 2}, - [37] = {.index = 71, .length = 3}, - [38] = {.index = 74, .length = 3}, - [39] = {.index = 77, .length = 3}, - [40] = {.index = 80, .length = 2}, - [41] = {.index = 82, .length = 3}, - [42] = {.index = 85, .length = 2}, - [43] = {.index = 87, .length = 3}, - [44] = {.index = 90, .length = 1}, - [45] = {.index = 91, .length = 3}, - [46] = {.index = 94, .length = 2}, - [47] = {.index = 96, .length = 2}, - [48] = {.index = 98, .length = 3}, - [49] = {.index = 101, .length = 2}, - [50] = {.index = 103, .length = 3}, - [51] = {.index = 106, .length = 3}, - [52] = {.index = 109, .length = 1}, - [53] = {.index = 110, .length = 2}, - [54] = {.index = 112, .length = 3}, - [55] = {.index = 115, .length = 2}, - [56] = {.index = 117, .length = 4}, - [57] = {.index = 121, .length = 2}, - [59] = {.index = 123, .length = 2}, - [60] = {.index = 125, .length = 3}, - [61] = {.index = 128, .length = 2}, - [62] = {.index = 130, .length = 3}, - [63] = {.index = 133, .length = 3}, - [64] = {.index = 136, .length = 3}, - [65] = {.index = 139, .length = 2}, - [66] = {.index = 141, .length = 3}, - [67] = {.index = 144, .length = 2}, - [68] = {.index = 146, .length = 3}, - [69] = {.index = 149, .length = 2}, - [70] = {.index = 151, .length = 3}, - [71] = {.index = 154, .length = 2}, - [72] = {.index = 156, .length = 3}, - [73] = {.index = 159, .length = 3}, - [74] = {.index = 162, .length = 4}, - [75] = {.index = 166, .length = 3}, + [27] = {.index = 53, .length = 2}, + [28] = {.index = 55, .length = 2}, + [29] = {.index = 57, .length = 2}, + [30] = {.index = 59, .length = 1}, + [31] = {.index = 60, .length = 3}, + [32] = {.index = 63, .length = 3}, + [34] = {.index = 66, .length = 3}, + [35] = {.index = 69, .length = 2}, + [36] = {.index = 71, .length = 2}, + [37] = {.index = 73, .length = 3}, + [38] = {.index = 76, .length = 3}, + [39] = {.index = 79, .length = 3}, + [40] = {.index = 82, .length = 2}, + [41] = {.index = 84, .length = 3}, + [42] = {.index = 87, .length = 2}, + [43] = {.index = 89, .length = 3}, + [44] = {.index = 92, .length = 1}, + [45] = {.index = 93, .length = 3}, + [46] = {.index = 96, .length = 2}, + [47] = {.index = 98, .length = 2}, + [48] = {.index = 100, .length = 3}, + [49] = {.index = 103, .length = 2}, + [50] = {.index = 105, .length = 3}, + [51] = {.index = 108, .length = 1}, + [52] = {.index = 109, .length = 3}, + [53] = {.index = 112, .length = 1}, + [54] = {.index = 113, .length = 2}, + [55] = {.index = 115, .length = 3}, + [56] = {.index = 118, .length = 2}, + [57] = {.index = 120, .length = 4}, + [58] = {.index = 124, .length = 2}, + [60] = {.index = 126, .length = 3}, + [61] = {.index = 129, .length = 3}, + [62] = {.index = 132, .length = 2}, + [63] = {.index = 134, .length = 3}, + [64] = {.index = 137, .length = 4}, + [65] = {.index = 141, .length = 3}, + [66] = {.index = 144, .length = 2}, + [67] = {.index = 146, .length = 3}, + [68] = {.index = 149, .length = 2}, + [69] = {.index = 151, .length = 3}, + [70] = {.index = 154, .length = 2}, + [71] = {.index = 156, .length = 3}, + [72] = {.index = 159, .length = 2}, + [73] = {.index = 161, .length = 3}, + [74] = {.index = 164, .length = 3}, + [75] = {.index = 167, .length = 2}, [76] = {.index = 169, .length = 4}, [77] = {.index = 173, .length = 3}, - [78] = {.index = 176, .length = 1}, - [79] = {.index = 177, .length = 2}, - [80] = {.index = 179, .length = 1}, - [82] = {.index = 180, .length = 2}, - [83] = {.index = 182, .length = 3}, - [84] = {.index = 185, .length = 3}, - [85] = {.index = 188, .length = 3}, - [86] = {.index = 191, .length = 3}, - [87] = {.index = 194, .length = 3}, - [88] = {.index = 197, .length = 4}, - [89] = {.index = 201, .length = 3}, - [90] = {.index = 204, .length = 3}, - [91] = {.index = 207, .length = 3}, - [92] = {.index = 210, .length = 4}, - [93] = {.index = 214, .length = 4}, - [94] = {.index = 218, .length = 5}, - [95] = {.index = 223, .length = 1}, - [96] = {.index = 224, .length = 2}, - [97] = {.index = 226, .length = 1}, - [98] = {.index = 227, .length = 3}, - [99] = {.index = 230, .length = 3}, - [100] = {.index = 233, .length = 4}, - [101] = {.index = 237, .length = 2}, - [102] = {.index = 239, .length = 3}, - [103] = {.index = 242, .length = 1}, + [78] = {.index = 176, .length = 4}, + [79] = {.index = 180, .length = 3}, + [80] = {.index = 183, .length = 1}, + [81] = {.index = 184, .length = 2}, + [82] = {.index = 186, .length = 1}, + [84] = {.index = 187, .length = 3}, + [85] = {.index = 190, .length = 3}, + [86] = {.index = 193, .length = 3}, + [87] = {.index = 196, .length = 3}, + [88] = {.index = 199, .length = 4}, + [89] = {.index = 203, .length = 3}, + [90] = {.index = 206, .length = 4}, + [91] = {.index = 210, .length = 3}, + [92] = {.index = 213, .length = 3}, + [93] = {.index = 216, .length = 3}, + [94] = {.index = 219, .length = 4}, + [95] = {.index = 223, .length = 4}, + [96] = {.index = 227, .length = 5}, + [97] = {.index = 232, .length = 1}, + [98] = {.index = 233, .length = 2}, + [99] = {.index = 235, .length = 1}, + [100] = {.index = 236, .length = 3}, + [101] = {.index = 239, .length = 4}, + [102] = {.index = 243, .length = 4}, + [103] = {.index = 247, .length = 2}, + [104] = {.index = 249, .length = 3}, + [105] = {.index = 252, .length = 1}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2598,267 +2609,279 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 1}, [53] = {field_attributes, 0, .inherited = true}, - [54] = + {field_modifier, 0, .inherited = true}, + [55] = {field_body, 3}, {field_name, 1}, - [56] = + [57] = {field_type, 1}, {field_value, 3}, - [58] = - {field_alternative, 0}, [59] = + {field_alternative, 0}, + [60] = {field_alternative, 3}, {field_body, 2}, {field_condition, 1}, - [62] = + [63] = {field_alternative, 3, .inherited = true}, {field_body, 2}, {field_condition, 1}, - [65] = + [66] = {field_body, 3}, + {field_modifier, 0}, {field_name, 2}, - [67] = + [69] = {field_alternative, 3}, {field_condition, 0}, - [69] = + [71] = {field_left, 0}, {field_right, 3}, - [71] = + [73] = {field_arguments, 3}, {field_name, 2}, {field_scope, 0}, - [74] = + [76] = {field_arguments, 3}, {field_name, 2}, {field_object, 0}, - [77] = + [79] = {field_attributes, 0}, {field_body, 3}, {field_name, 2}, - [80] = + [82] = {field_body, 4}, {field_parameters, 3}, - [82] = + [84] = {field_body, 4}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [85] = + [87] = {field_body, 4}, {field_parameters, 2}, - [87] = + [89] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [90] = + [92] = {field_name, 2}, - [91] = + [93] = {field_name, 2}, {field_type, 1}, {field_visibility, 0}, - [94] = + [96] = {field_name, 2}, {field_type, 0}, - [96] = + [98] = {field_attributes, 0}, {field_name, 2}, - [98] = + [100] = {field_attributes, 0}, {field_name, 2}, {field_type, 1}, - [101] = + [103] = {field_default_value, 2}, {field_name, 0}, - [103] = + [105] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3, .inherited = true}, - [106] = + [108] = + {field_modifier, 0}, + [109] = {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, - [109] = + [112] = {field_attributes, 0}, - [110] = + [113] = {field_body, 4}, {field_name, 1}, - [112] = + [115] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [115] = + [118] = {field_body, 1}, {field_condition, 3}, - [117] = + [120] = {field_alternative, 3, .inherited = true}, {field_alternative, 4}, {field_body, 2}, {field_condition, 1}, - [121] = + [124] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [123] = + [126] = {field_body, 4}, + {field_modifier, 0}, {field_name, 2}, - [125] = + [129] = {field_alternative, 4}, {field_body, 2}, {field_condition, 0}, - [128] = + [132] = {field_name, 3}, {field_object, 0}, - [130] = + [134] = {field_attributes, 0}, {field_body, 4}, {field_name, 2}, - [133] = + [137] = {field_attributes, 0}, {field_body, 4}, + {field_modifier, 1}, {field_name, 3}, - [136] = + [141] = {field_body, 5}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [139] = + [144] = {field_body, 5}, {field_parameters, 3}, - [141] = + [146] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4, .inherited = true}, - [144] = + [149] = {field_default_value, 3}, {field_name, 1}, - [146] = + [151] = {field_default_value, 3}, {field_name, 1}, {field_visibility, 0}, - [149] = + [154] = {field_name, 3}, {field_type, 0}, - [151] = + [156] = {field_default_value, 3}, {field_name, 1}, {field_type, 0}, - [154] = + [159] = {field_attributes, 0}, {field_name, 3}, - [156] = + [161] = {field_attributes, 0}, {field_name, 3}, {field_type, 1}, - [159] = + [164] = {field_attributes, 0}, {field_default_value, 3}, {field_name, 1}, - [162] = + [167] = + {field_attributes, 0}, + {field_modifier, 1}, + [169] = {field_attributes, 0}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [166] = + [173] = {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [169] = + [176] = {field_body, 2}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [173] = + [180] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [176] = + [183] = {field_return_expression, 2}, - [177] = + [184] = {field_conditional_expressions, 0}, {field_return_expression, 2}, - [179] = + [186] = {field_value, 1}, - [180] = + [187] = {field_body, 5}, + {field_modifier, 0}, {field_name, 2}, - [182] = + [190] = {field_arguments, 5}, {field_name, 3}, {field_scope, 0}, - [185] = + [193] = {field_arguments, 5}, {field_name, 3}, {field_object, 0}, - [188] = + [196] = {field_attributes, 0}, {field_body, 5}, {field_name, 2}, - [191] = + [199] = {field_attributes, 0}, {field_body, 5}, + {field_modifier, 1}, {field_name, 3}, - [194] = + [203] = {field_body, 6}, {field_parameters, 3}, {field_return_type, 5, .inherited = true}, - [197] = + [206] = {field_default_value, 4}, {field_name, 2}, {field_type, 1}, {field_visibility, 0}, - [201] = + [210] = {field_default_value, 4}, {field_name, 2}, {field_type, 0}, - [204] = + [213] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, - [207] = + [216] = {field_attributes, 0}, {field_name, 4}, {field_type, 1}, - [210] = + [219] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_type, 1}, - [214] = + [223] = {field_attributes, 0}, {field_name, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, - [218] = + [227] = {field_attributes, 0}, {field_body, 3}, {field_name, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, - [223] = + [232] = {field_type, 1}, - [224] = + [233] = {field_body, 4}, {field_type, 2}, - [226] = + [235] = {field_body, 6}, - [227] = + [236] = {field_body, 6}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [230] = + [239] = {field_attributes, 0}, {field_body, 6}, + {field_modifier, 1}, {field_name, 3}, - [233] = + [243] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_type, 1}, - [237] = + [247] = {field_attributes, 0}, {field_type, 2}, - [239] = + [249] = {field_body, 5}, {field_name, 3}, {field_type, 2}, - [242] = + [252] = {field_body, 7}, }; @@ -2870,10 +2893,10 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [33] = { [2] = sym_list_literal, }, - [58] = { + [59] = { [3] = sym_list_literal, }, - [81] = { + [83] = { [4] = sym_list_literal, }, }; @@ -5495,7 +5518,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'd') ADVANCE(294); END_STATE(); case 244: - ACCEPT_TOKEN(aux_sym_class_modifier_token2); + ACCEPT_TOKEN(aux_sym_final_modifier_token1); if (lookahead == 'L' || lookahead == 'l') ADVANCE(295); END_STATE(); @@ -5869,7 +5892,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(369); END_STATE(); case 351: - ACCEPT_TOKEN(aux_sym_class_modifier_token1); + ACCEPT_TOKEN(aux_sym_abstract_modifier_token1); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym_continue_statement_token1); @@ -6061,20 +6084,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 0, .external_lex_state = 2}, [32] = {.lex_state = 0, .external_lex_state = 2}, [33] = {.lex_state = 0, .external_lex_state = 2}, - [34] = {.lex_state = 0, .external_lex_state = 2}, - [35] = {.lex_state = 0, .external_lex_state = 3}, + [34] = {.lex_state = 0, .external_lex_state = 3}, + [35] = {.lex_state = 0, .external_lex_state = 2}, [36] = {.lex_state = 0, .external_lex_state = 2}, [37] = {.lex_state = 0, .external_lex_state = 2}, [38] = {.lex_state = 0, .external_lex_state = 2}, [39] = {.lex_state = 0, .external_lex_state = 2}, - [40] = {.lex_state = 0, .external_lex_state = 3}, - [41] = {.lex_state = 0, .external_lex_state = 2}, + [40] = {.lex_state = 0, .external_lex_state = 2}, + [41] = {.lex_state = 0, .external_lex_state = 3}, [42] = {.lex_state = 0, .external_lex_state = 2}, [43] = {.lex_state = 0, .external_lex_state = 2}, [44] = {.lex_state = 0, .external_lex_state = 3}, [45] = {.lex_state = 0, .external_lex_state = 3}, [46] = {.lex_state = 0, .external_lex_state = 3}, - [47] = {.lex_state = 0, .external_lex_state = 2}, + [47] = {.lex_state = 0, .external_lex_state = 3}, [48] = {.lex_state = 0, .external_lex_state = 3}, [49] = {.lex_state = 0, .external_lex_state = 2}, [50] = {.lex_state = 0, .external_lex_state = 3}, @@ -6083,22 +6106,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [53] = {.lex_state = 0, .external_lex_state = 2}, [54] = {.lex_state = 0, .external_lex_state = 2}, [55] = {.lex_state = 0, .external_lex_state = 3}, - [56] = {.lex_state = 0, .external_lex_state = 2}, - [57] = {.lex_state = 0, .external_lex_state = 3}, + [56] = {.lex_state = 0, .external_lex_state = 3}, + [57] = {.lex_state = 0, .external_lex_state = 2}, [58] = {.lex_state = 0, .external_lex_state = 3}, [59] = {.lex_state = 0, .external_lex_state = 2}, [60] = {.lex_state = 0, .external_lex_state = 3}, [61] = {.lex_state = 0, .external_lex_state = 3}, [62] = {.lex_state = 0, .external_lex_state = 3}, - [63] = {.lex_state = 0, .external_lex_state = 3}, + [63] = {.lex_state = 0, .external_lex_state = 2}, [64] = {.lex_state = 0, .external_lex_state = 2}, [65] = {.lex_state = 0, .external_lex_state = 2}, [66] = {.lex_state = 0, .external_lex_state = 2}, [67] = {.lex_state = 0, .external_lex_state = 2}, - [68] = {.lex_state = 0, .external_lex_state = 3}, + [68] = {.lex_state = 0, .external_lex_state = 2}, [69] = {.lex_state = 0, .external_lex_state = 2}, [70] = {.lex_state = 0, .external_lex_state = 2}, - [71] = {.lex_state = 0, .external_lex_state = 2}, + [71] = {.lex_state = 0, .external_lex_state = 3}, [72] = {.lex_state = 0, .external_lex_state = 2}, [73] = {.lex_state = 0, .external_lex_state = 3}, [74] = {.lex_state = 0, .external_lex_state = 2}, @@ -6192,18 +6215,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [162] = {.lex_state = 85, .external_lex_state = 2}, [163] = {.lex_state = 85, .external_lex_state = 3}, [164] = {.lex_state = 85, .external_lex_state = 3}, - [165] = {.lex_state = 85, .external_lex_state = 2}, + [165] = {.lex_state = 85, .external_lex_state = 3}, [166] = {.lex_state = 85, .external_lex_state = 3}, [167] = {.lex_state = 85, .external_lex_state = 2}, [168] = {.lex_state = 85, .external_lex_state = 3}, - [169] = {.lex_state = 85, .external_lex_state = 3}, + [169] = {.lex_state = 85, .external_lex_state = 2}, [170] = {.lex_state = 85, .external_lex_state = 2}, [171] = {.lex_state = 85, .external_lex_state = 2}, [172] = {.lex_state = 85, .external_lex_state = 2}, [173] = {.lex_state = 85, .external_lex_state = 2}, - [174] = {.lex_state = 85, .external_lex_state = 2}, + [174] = {.lex_state = 85, .external_lex_state = 3}, [175] = {.lex_state = 85, .external_lex_state = 2}, - [176] = {.lex_state = 85, .external_lex_state = 3}, + [176] = {.lex_state = 85, .external_lex_state = 2}, [177] = {.lex_state = 85, .external_lex_state = 2}, [178] = {.lex_state = 85, .external_lex_state = 2}, [179] = {.lex_state = 85, .external_lex_state = 2}, @@ -6581,65 +6604,65 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [551] = {.lex_state = 3}, [552] = {.lex_state = 3}, [553] = {.lex_state = 3}, - [554] = {.lex_state = 85, .external_lex_state = 2}, - [555] = {.lex_state = 3}, + [554] = {.lex_state = 3, .external_lex_state = 4}, + [555] = {.lex_state = 3, .external_lex_state = 4}, [556] = {.lex_state = 3, .external_lex_state = 4}, - [557] = {.lex_state = 3}, - [558] = {.lex_state = 85, .external_lex_state = 2}, - [559] = {.lex_state = 3}, - [560] = {.lex_state = 3}, - [561] = {.lex_state = 3, .external_lex_state = 4}, - [562] = {.lex_state = 3, .external_lex_state = 4}, - [563] = {.lex_state = 3, .external_lex_state = 4}, - [564] = {.lex_state = 3, .external_lex_state = 4}, + [557] = {.lex_state = 85, .external_lex_state = 2}, + [558] = {.lex_state = 3}, + [559] = {.lex_state = 3, .external_lex_state = 4}, + [560] = {.lex_state = 85, .external_lex_state = 2}, + [561] = {.lex_state = 3}, + [562] = {.lex_state = 85, .external_lex_state = 2}, + [563] = {.lex_state = 85, .external_lex_state = 2}, + [564] = {.lex_state = 3}, [565] = {.lex_state = 3, .external_lex_state = 4}, - [566] = {.lex_state = 85, .external_lex_state = 2}, - [567] = {.lex_state = 85, .external_lex_state = 2}, + [566] = {.lex_state = 3, .external_lex_state = 4}, + [567] = {.lex_state = 3}, [568] = {.lex_state = 3, .external_lex_state = 4}, - [569] = {.lex_state = 3}, + [569] = {.lex_state = 3, .external_lex_state = 4}, [570] = {.lex_state = 3, .external_lex_state = 4}, [571] = {.lex_state = 3, .external_lex_state = 4}, [572] = {.lex_state = 3, .external_lex_state = 4}, - [573] = {.lex_state = 3}, + [573] = {.lex_state = 3, .external_lex_state = 4}, [574] = {.lex_state = 3, .external_lex_state = 4}, [575] = {.lex_state = 3, .external_lex_state = 4}, - [576] = {.lex_state = 3, .external_lex_state = 4}, + [576] = {.lex_state = 3}, [577] = {.lex_state = 3, .external_lex_state = 4}, [578] = {.lex_state = 3, .external_lex_state = 4}, - [579] = {.lex_state = 3, .external_lex_state = 4}, + [579] = {.lex_state = 3}, [580] = {.lex_state = 3, .external_lex_state = 4}, [581] = {.lex_state = 3}, [582] = {.lex_state = 3, .external_lex_state = 4}, [583] = {.lex_state = 3, .external_lex_state = 4}, - [584] = {.lex_state = 3, .external_lex_state = 4}, + [584] = {.lex_state = 3}, [585] = {.lex_state = 3, .external_lex_state = 4}, [586] = {.lex_state = 3}, - [587] = {.lex_state = 3}, + [587] = {.lex_state = 3, .external_lex_state = 4}, [588] = {.lex_state = 3, .external_lex_state = 4}, [589] = {.lex_state = 3, .external_lex_state = 4}, - [590] = {.lex_state = 3, .external_lex_state = 4}, - [591] = {.lex_state = 3, .external_lex_state = 4}, - [592] = {.lex_state = 3}, + [590] = {.lex_state = 3}, + [591] = {.lex_state = 3}, + [592] = {.lex_state = 3, .external_lex_state = 4}, [593] = {.lex_state = 3}, - [594] = {.lex_state = 3}, + [594] = {.lex_state = 3, .external_lex_state = 4}, [595] = {.lex_state = 3}, - [596] = {.lex_state = 85, .external_lex_state = 2}, - [597] = {.lex_state = 85, .external_lex_state = 2}, - [598] = {.lex_state = 85, .external_lex_state = 2}, + [596] = {.lex_state = 3}, + [597] = {.lex_state = 3}, + [598] = {.lex_state = 3}, [599] = {.lex_state = 85, .external_lex_state = 2}, - [600] = {.lex_state = 3}, - [601] = {.lex_state = 3}, - [602] = {.lex_state = 3}, + [600] = {.lex_state = 85, .external_lex_state = 2}, + [601] = {.lex_state = 85, .external_lex_state = 2}, + [602] = {.lex_state = 85, .external_lex_state = 2}, [603] = {.lex_state = 4}, [604] = {.lex_state = 3}, - [605] = {.lex_state = 4}, - [606] = {.lex_state = 3}, + [605] = {.lex_state = 3}, + [606] = {.lex_state = 4}, [607] = {.lex_state = 4}, [608] = {.lex_state = 4}, [609] = {.lex_state = 4}, [610] = {.lex_state = 4}, [611] = {.lex_state = 4}, - [612] = {.lex_state = 3}, + [612] = {.lex_state = 4}, [613] = {.lex_state = 4}, [614] = {.lex_state = 4}, [615] = {.lex_state = 4}, @@ -6653,17 +6676,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [623] = {.lex_state = 4}, [624] = {.lex_state = 4}, [625] = {.lex_state = 4}, - [626] = {.lex_state = 4}, + [626] = {.lex_state = 3}, [627] = {.lex_state = 4}, [628] = {.lex_state = 4}, [629] = {.lex_state = 4}, [630] = {.lex_state = 4}, [631] = {.lex_state = 4}, - [632] = {.lex_state = 3}, + [632] = {.lex_state = 4}, [633] = {.lex_state = 4}, [634] = {.lex_state = 4}, [635] = {.lex_state = 4}, - [636] = {.lex_state = 4}, + [636] = {.lex_state = 3}, [637] = {.lex_state = 4}, [638] = {.lex_state = 4}, [639] = {.lex_state = 4}, @@ -6689,91 +6712,91 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [659] = {.lex_state = 4}, [660] = {.lex_state = 4}, [661] = {.lex_state = 4}, - [662] = {.lex_state = 4}, - [663] = {.lex_state = 4, .external_lex_state = 4}, - [664] = {.lex_state = 4, .external_lex_state = 4}, - [665] = {.lex_state = 4}, + [662] = {.lex_state = 5}, + [663] = {.lex_state = 3, .external_lex_state = 4}, + [664] = {.lex_state = 5}, + [665] = {.lex_state = 86}, [666] = {.lex_state = 4}, - [667] = {.lex_state = 3, .external_lex_state = 4}, - [668] = {.lex_state = 4, .external_lex_state = 4}, - [669] = {.lex_state = 5}, - [670] = {.lex_state = 3, .external_lex_state = 4}, - [671] = {.lex_state = 5}, - [672] = {.lex_state = 4}, - [673] = {.lex_state = 4}, - [674] = {.lex_state = 4, .external_lex_state = 4}, + [667] = {.lex_state = 4, .external_lex_state = 4}, + [668] = {.lex_state = 4}, + [669] = {.lex_state = 4}, + [670] = {.lex_state = 4}, + [671] = {.lex_state = 4, .external_lex_state = 4}, + [672] = {.lex_state = 3, .external_lex_state = 4}, + [673] = {.lex_state = 4, .external_lex_state = 4}, + [674] = {.lex_state = 4}, [675] = {.lex_state = 86}, [676] = {.lex_state = 4}, [677] = {.lex_state = 4, .external_lex_state = 4}, - [678] = {.lex_state = 86}, + [678] = {.lex_state = 4, .external_lex_state = 4}, [679] = {.lex_state = 4, .external_lex_state = 4}, [680] = {.lex_state = 4, .external_lex_state = 4}, [681] = {.lex_state = 4, .external_lex_state = 4}, [682] = {.lex_state = 4, .external_lex_state = 4}, [683] = {.lex_state = 4, .external_lex_state = 4}, [684] = {.lex_state = 4, .external_lex_state = 4}, - [685] = {.lex_state = 4, .external_lex_state = 4}, - [686] = {.lex_state = 4, .external_lex_state = 4}, + [685] = {.lex_state = 5}, + [686] = {.lex_state = 5}, [687] = {.lex_state = 4, .external_lex_state = 4}, - [688] = {.lex_state = 5}, + [688] = {.lex_state = 4, .external_lex_state = 4}, [689] = {.lex_state = 4, .external_lex_state = 4}, [690] = {.lex_state = 4, .external_lex_state = 4}, [691] = {.lex_state = 4, .external_lex_state = 4}, [692] = {.lex_state = 4, .external_lex_state = 4}, [693] = {.lex_state = 4, .external_lex_state = 4}, [694] = {.lex_state = 4, .external_lex_state = 4}, - [695] = {.lex_state = 26}, + [695] = {.lex_state = 4, .external_lex_state = 4}, [696] = {.lex_state = 4, .external_lex_state = 4}, - [697] = {.lex_state = 3, .external_lex_state = 4}, + [697] = {.lex_state = 4, .external_lex_state = 4}, [698] = {.lex_state = 4, .external_lex_state = 4}, [699] = {.lex_state = 4, .external_lex_state = 4}, [700] = {.lex_state = 4, .external_lex_state = 4}, [701] = {.lex_state = 26}, - [702] = {.lex_state = 5}, - [703] = {.lex_state = 4, .external_lex_state = 4}, - [704] = {.lex_state = 3, .external_lex_state = 4}, + [702] = {.lex_state = 4, .external_lex_state = 4}, + [703] = {.lex_state = 26}, + [704] = {.lex_state = 4, .external_lex_state = 4}, [705] = {.lex_state = 4, .external_lex_state = 4}, - [706] = {.lex_state = 4, .external_lex_state = 4}, + [706] = {.lex_state = 3, .external_lex_state = 4}, [707] = {.lex_state = 4, .external_lex_state = 4}, - [708] = {.lex_state = 4, .external_lex_state = 4}, + [708] = {.lex_state = 3, .external_lex_state = 4}, [709] = {.lex_state = 4, .external_lex_state = 4}, [710] = {.lex_state = 4, .external_lex_state = 4}, [711] = {.lex_state = 4, .external_lex_state = 4}, [712] = {.lex_state = 4, .external_lex_state = 4}, [713] = {.lex_state = 26}, - [714] = {.lex_state = 4, .external_lex_state = 4}, + [714] = {.lex_state = 26}, [715] = {.lex_state = 4, .external_lex_state = 4}, [716] = {.lex_state = 4, .external_lex_state = 4}, [717] = {.lex_state = 4, .external_lex_state = 4}, [718] = {.lex_state = 4, .external_lex_state = 4}, - [719] = {.lex_state = 26}, - [720] = {.lex_state = 4, .external_lex_state = 4}, + [719] = {.lex_state = 4, .external_lex_state = 4}, + [720] = {.lex_state = 26}, [721] = {.lex_state = 4, .external_lex_state = 4}, [722] = {.lex_state = 4, .external_lex_state = 4}, [723] = {.lex_state = 4, .external_lex_state = 4}, [724] = {.lex_state = 4, .external_lex_state = 4}, - [725] = {.lex_state = 4}, + [725] = {.lex_state = 4, .external_lex_state = 4}, [726] = {.lex_state = 4, .external_lex_state = 4}, [727] = {.lex_state = 4, .external_lex_state = 4}, [728] = {.lex_state = 4, .external_lex_state = 4}, - [729] = {.lex_state = 4, .external_lex_state = 4}, + [729] = {.lex_state = 4}, [730] = {.lex_state = 4, .external_lex_state = 4}, - [731] = {.lex_state = 4, .external_lex_state = 4}, + [731] = {.lex_state = 4}, [732] = {.lex_state = 4, .external_lex_state = 4}, [733] = {.lex_state = 4, .external_lex_state = 4}, [734] = {.lex_state = 4, .external_lex_state = 4}, [735] = {.lex_state = 4, .external_lex_state = 4}, - [736] = {.lex_state = 4}, - [737] = {.lex_state = 4, .external_lex_state = 4}, + [736] = {.lex_state = 4, .external_lex_state = 4}, + [737] = {.lex_state = 26}, [738] = {.lex_state = 4, .external_lex_state = 4}, [739] = {.lex_state = 4, .external_lex_state = 4}, [740] = {.lex_state = 4, .external_lex_state = 4}, - [741] = {.lex_state = 26}, - [742] = {.lex_state = 26}, + [741] = {.lex_state = 4, .external_lex_state = 4}, + [742] = {.lex_state = 4, .external_lex_state = 4}, [743] = {.lex_state = 4, .external_lex_state = 4}, - [744] = {.lex_state = 4, .external_lex_state = 4}, + [744] = {.lex_state = 26}, [745] = {.lex_state = 4, .external_lex_state = 4}, - [746] = {.lex_state = 26}, + [746] = {.lex_state = 4, .external_lex_state = 4}, [747] = {.lex_state = 4, .external_lex_state = 4}, [748] = {.lex_state = 5}, [749] = {.lex_state = 5}, @@ -6781,7 +6804,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [751] = {.lex_state = 5}, [752] = {.lex_state = 5}, [753] = {.lex_state = 5}, - [754] = {.lex_state = 5}, + [754] = {.lex_state = 86, .external_lex_state = 2}, [755] = {.lex_state = 5}, [756] = {.lex_state = 5}, [757] = {.lex_state = 5}, @@ -6789,7 +6812,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [759] = {.lex_state = 5}, [760] = {.lex_state = 5}, [761] = {.lex_state = 5}, - [762] = {.lex_state = 86, .external_lex_state = 2}, + [762] = {.lex_state = 5}, [763] = {.lex_state = 5}, [764] = {.lex_state = 5}, [765] = {.lex_state = 5}, @@ -6800,23 +6823,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [770] = {.lex_state = 5}, [771] = {.lex_state = 5}, [772] = {.lex_state = 5}, - [773] = {.lex_state = 86, .external_lex_state = 2}, + [773] = {.lex_state = 5}, [774] = {.lex_state = 5}, [775] = {.lex_state = 5}, [776] = {.lex_state = 5}, - [777] = {.lex_state = 5}, + [777] = {.lex_state = 86, .external_lex_state = 2}, [778] = {.lex_state = 5}, - [779] = {.lex_state = 5}, + [779] = {.lex_state = 86, .external_lex_state = 2}, [780] = {.lex_state = 5}, [781] = {.lex_state = 5}, [782] = {.lex_state = 5}, - [783] = {.lex_state = 86, .external_lex_state = 2}, + [783] = {.lex_state = 5}, [784] = {.lex_state = 5}, [785] = {.lex_state = 5}, [786] = {.lex_state = 5, .external_lex_state = 4}, [787] = {.lex_state = 5, .external_lex_state = 4}, [788] = {.lex_state = 5}, - [789] = {.lex_state = 5}, + [789] = {.lex_state = 86, .external_lex_state = 2}, [790] = {.lex_state = 5}, [791] = {.lex_state = 5}, [792] = {.lex_state = 5}, @@ -6841,7 +6864,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [811] = {.lex_state = 5}, [812] = {.lex_state = 5}, [813] = {.lex_state = 5}, - [814] = {.lex_state = 86, .external_lex_state = 2}, + [814] = {.lex_state = 5}, [815] = {.lex_state = 5}, [816] = {.lex_state = 5}, [817] = {.lex_state = 5}, @@ -6851,21 +6874,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [821] = {.lex_state = 5}, [822] = {.lex_state = 5}, [823] = {.lex_state = 5}, - [824] = {.lex_state = 5}, - [825] = {.lex_state = 86, .external_lex_state = 2}, + [824] = {.lex_state = 86, .external_lex_state = 2}, + [825] = {.lex_state = 5}, [826] = {.lex_state = 5}, [827] = {.lex_state = 5}, [828] = {.lex_state = 5}, [829] = {.lex_state = 5}, [830] = {.lex_state = 5}, - [831] = {.lex_state = 5}, + [831] = {.lex_state = 86, .external_lex_state = 2}, [832] = {.lex_state = 5}, [833] = {.lex_state = 5}, [834] = {.lex_state = 5}, [835] = {.lex_state = 5}, [836] = {.lex_state = 5}, [837] = {.lex_state = 5}, - [838] = {.lex_state = 5}, + [838] = {.lex_state = 86, .external_lex_state = 2}, [839] = {.lex_state = 5}, [840] = {.lex_state = 5}, [841] = {.lex_state = 5}, @@ -6888,11 +6911,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [858] = {.lex_state = 5}, [859] = {.lex_state = 5}, [860] = {.lex_state = 5}, - [861] = {.lex_state = 86, .external_lex_state = 2}, + [861] = {.lex_state = 5}, [862] = {.lex_state = 5}, [863] = {.lex_state = 5}, [864] = {.lex_state = 5}, - [865] = {.lex_state = 86, .external_lex_state = 2}, + [865] = {.lex_state = 5}, [866] = {.lex_state = 5}, [867] = {.lex_state = 5}, [868] = {.lex_state = 5}, @@ -6922,49 +6945,49 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [892] = {.lex_state = 5, .external_lex_state = 4}, [893] = {.lex_state = 5, .external_lex_state = 4}, [894] = {.lex_state = 5, .external_lex_state = 4}, - [895] = {.lex_state = 5, .external_lex_state = 4}, + [895] = {.lex_state = 86, .external_lex_state = 2}, [896] = {.lex_state = 86, .external_lex_state = 2}, [897] = {.lex_state = 5, .external_lex_state = 4}, [898] = {.lex_state = 5, .external_lex_state = 4}, - [899] = {.lex_state = 5, .external_lex_state = 4}, + [899] = {.lex_state = 86, .external_lex_state = 2}, [900] = {.lex_state = 5, .external_lex_state = 4}, [901] = {.lex_state = 5, .external_lex_state = 4}, [902] = {.lex_state = 5, .external_lex_state = 4}, - [903] = {.lex_state = 5, .external_lex_state = 4}, + [903] = {.lex_state = 86, .external_lex_state = 2}, [904] = {.lex_state = 5, .external_lex_state = 4}, [905] = {.lex_state = 5, .external_lex_state = 4}, [906] = {.lex_state = 5, .external_lex_state = 4}, - [907] = {.lex_state = 86, .external_lex_state = 2}, + [907] = {.lex_state = 5, .external_lex_state = 4}, [908] = {.lex_state = 5, .external_lex_state = 4}, [909] = {.lex_state = 5, .external_lex_state = 4}, [910] = {.lex_state = 5, .external_lex_state = 4}, - [911] = {.lex_state = 5, .external_lex_state = 4}, - [912] = {.lex_state = 5, .external_lex_state = 4}, + [911] = {.lex_state = 86, .external_lex_state = 2}, + [912] = {.lex_state = 86, .external_lex_state = 2}, [913] = {.lex_state = 5, .external_lex_state = 4}, [914] = {.lex_state = 5, .external_lex_state = 4}, - [915] = {.lex_state = 5, .external_lex_state = 4}, + [915] = {.lex_state = 86, .external_lex_state = 2}, [916] = {.lex_state = 5, .external_lex_state = 4}, [917] = {.lex_state = 5, .external_lex_state = 4}, - [918] = {.lex_state = 86, .external_lex_state = 2}, + [918] = {.lex_state = 5, .external_lex_state = 4}, [919] = {.lex_state = 5, .external_lex_state = 4}, [920] = {.lex_state = 86, .external_lex_state = 2}, [921] = {.lex_state = 5, .external_lex_state = 4}, [922] = {.lex_state = 5, .external_lex_state = 4}, [923] = {.lex_state = 5, .external_lex_state = 4}, [924] = {.lex_state = 5, .external_lex_state = 4}, - [925] = {.lex_state = 86, .external_lex_state = 2}, + [925] = {.lex_state = 5, .external_lex_state = 4}, [926] = {.lex_state = 5, .external_lex_state = 4}, [927] = {.lex_state = 5, .external_lex_state = 4}, [928] = {.lex_state = 5, .external_lex_state = 4}, [929] = {.lex_state = 5, .external_lex_state = 4}, [930] = {.lex_state = 5, .external_lex_state = 4}, [931] = {.lex_state = 5, .external_lex_state = 4}, - [932] = {.lex_state = 86, .external_lex_state = 2}, - [933] = {.lex_state = 86, .external_lex_state = 2}, + [932] = {.lex_state = 5, .external_lex_state = 4}, + [933] = {.lex_state = 5, .external_lex_state = 4}, [934] = {.lex_state = 5, .external_lex_state = 4}, [935] = {.lex_state = 5, .external_lex_state = 4}, [936] = {.lex_state = 5, .external_lex_state = 4}, - [937] = {.lex_state = 86, .external_lex_state = 2}, + [937] = {.lex_state = 5, .external_lex_state = 4}, [938] = {.lex_state = 5, .external_lex_state = 4}, [939] = {.lex_state = 5, .external_lex_state = 4}, [940] = {.lex_state = 5, .external_lex_state = 4}, @@ -6974,21 +6997,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [944] = {.lex_state = 5, .external_lex_state = 4}, [945] = {.lex_state = 5, .external_lex_state = 4}, [946] = {.lex_state = 5, .external_lex_state = 4}, - [947] = {.lex_state = 86, .external_lex_state = 2}, - [948] = {.lex_state = 86, .external_lex_state = 2}, + [947] = {.lex_state = 5, .external_lex_state = 4}, + [948] = {.lex_state = 5, .external_lex_state = 4}, [949] = {.lex_state = 5, .external_lex_state = 4}, [950] = {.lex_state = 5, .external_lex_state = 4}, [951] = {.lex_state = 5, .external_lex_state = 4}, - [952] = {.lex_state = 5, .external_lex_state = 4}, + [952] = {.lex_state = 86, .external_lex_state = 2}, [953] = {.lex_state = 5, .external_lex_state = 4}, [954] = {.lex_state = 5, .external_lex_state = 4}, [955] = {.lex_state = 5, .external_lex_state = 4}, [956] = {.lex_state = 86, .external_lex_state = 2}, [957] = {.lex_state = 5, .external_lex_state = 4}, [958] = {.lex_state = 5, .external_lex_state = 4}, - [959] = {.lex_state = 5, .external_lex_state = 4}, - [960] = {.lex_state = 5, .external_lex_state = 4}, - [961] = {.lex_state = 86, .external_lex_state = 2}, + [959] = {.lex_state = 86, .external_lex_state = 2}, + [960] = {.lex_state = 86, .external_lex_state = 2}, + [961] = {.lex_state = 5, .external_lex_state = 4}, [962] = {.lex_state = 5}, [963] = {.lex_state = 5}, [964] = {.lex_state = 5}, @@ -7031,13 +7054,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1001] = {.lex_state = 5}, [1002] = {.lex_state = 5}, [1003] = {.lex_state = 5, .external_lex_state = 4}, - [1004] = {.lex_state = 5, .external_lex_state = 4}, + [1004] = {.lex_state = 86}, [1005] = {.lex_state = 5, .external_lex_state = 4}, [1006] = {.lex_state = 5, .external_lex_state = 4}, - [1007] = {.lex_state = 5}, - [1008] = {.lex_state = 5, .external_lex_state = 4}, - [1009] = {.lex_state = 5}, - [1010] = {.lex_state = 5}, + [1007] = {.lex_state = 5, .external_lex_state = 4}, + [1008] = {.lex_state = 5}, + [1009] = {.lex_state = 5, .external_lex_state = 4}, + [1010] = {.lex_state = 5, .external_lex_state = 4}, [1011] = {.lex_state = 5}, [1012] = {.lex_state = 5}, [1013] = {.lex_state = 5}, @@ -7046,15 +7069,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1016] = {.lex_state = 5}, [1017] = {.lex_state = 5}, [1018] = {.lex_state = 5}, - [1019] = {.lex_state = 5, .external_lex_state = 4}, - [1020] = {.lex_state = 5, .external_lex_state = 4}, + [1019] = {.lex_state = 5}, + [1020] = {.lex_state = 5}, [1021] = {.lex_state = 5, .external_lex_state = 4}, - [1022] = {.lex_state = 5, .external_lex_state = 4}, + [1022] = {.lex_state = 5}, [1023] = {.lex_state = 5}, [1024] = {.lex_state = 5}, [1025] = {.lex_state = 5}, - [1026] = {.lex_state = 5, .external_lex_state = 4}, - [1027] = {.lex_state = 5, .external_lex_state = 4}, + [1026] = {.lex_state = 5}, + [1027] = {.lex_state = 5}, [1028] = {.lex_state = 5, .external_lex_state = 4}, [1029] = {.lex_state = 5}, [1030] = {.lex_state = 5}, @@ -7062,12 +7085,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1032] = {.lex_state = 5}, [1033] = {.lex_state = 5}, [1034] = {.lex_state = 5}, - [1035] = {.lex_state = 5}, - [1036] = {.lex_state = 5}, - [1037] = {.lex_state = 5}, - [1038] = {.lex_state = 5}, - [1039] = {.lex_state = 86}, - [1040] = {.lex_state = 5, .external_lex_state = 4}, + [1035] = {.lex_state = 5, .external_lex_state = 4}, + [1036] = {.lex_state = 5, .external_lex_state = 4}, + [1037] = {.lex_state = 5, .external_lex_state = 4}, + [1038] = {.lex_state = 5, .external_lex_state = 4}, + [1039] = {.lex_state = 5, .external_lex_state = 4}, + [1040] = {.lex_state = 5}, [1041] = {.lex_state = 5}, [1042] = {.lex_state = 5}, [1043] = {.lex_state = 5}, @@ -7090,7 +7113,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1060] = {.lex_state = 5}, [1061] = {.lex_state = 5}, [1062] = {.lex_state = 5}, - [1063] = {.lex_state = 5}, + [1063] = {.lex_state = 28}, [1064] = {.lex_state = 5}, [1065] = {.lex_state = 5}, [1066] = {.lex_state = 5}, @@ -7108,7 +7131,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1078] = {.lex_state = 5}, [1079] = {.lex_state = 5}, [1080] = {.lex_state = 5}, - [1081] = {.lex_state = 28}, + [1081] = {.lex_state = 5}, [1082] = {.lex_state = 5}, [1083] = {.lex_state = 5}, [1084] = {.lex_state = 5}, @@ -7123,41 +7146,41 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1093] = {.lex_state = 5}, [1094] = {.lex_state = 5}, [1095] = {.lex_state = 27}, - [1096] = {.lex_state = 27}, + [1096] = {.lex_state = 86}, [1097] = {.lex_state = 27}, [1098] = {.lex_state = 27}, [1099] = {.lex_state = 27}, [1100] = {.lex_state = 27}, [1101] = {.lex_state = 27}, - [1102] = {.lex_state = 27}, + [1102] = {.lex_state = 86}, [1103] = {.lex_state = 27}, - [1104] = {.lex_state = 5}, - [1105] = {.lex_state = 86}, - [1106] = {.lex_state = 86}, + [1104] = {.lex_state = 27}, + [1105] = {.lex_state = 27}, + [1106] = {.lex_state = 5}, [1107] = {.lex_state = 86}, [1108] = {.lex_state = 86}, [1109] = {.lex_state = 86}, [1110] = {.lex_state = 86}, [1111] = {.lex_state = 26}, - [1112] = {.lex_state = 5}, - [1113] = {.lex_state = 26}, + [1112] = {.lex_state = 86}, + [1113] = {.lex_state = 86}, [1114] = {.lex_state = 5}, [1115] = {.lex_state = 26}, - [1116] = {.lex_state = 26}, + [1116] = {.lex_state = 86}, [1117] = {.lex_state = 5}, - [1118] = {.lex_state = 5}, - [1119] = {.lex_state = 5}, - [1120] = {.lex_state = 3}, - [1121] = {.lex_state = 3}, - [1122] = {.lex_state = 3}, - [1123] = {.lex_state = 5}, - [1124] = {.lex_state = 86}, - [1125] = {.lex_state = 86}, - [1126] = {.lex_state = 86}, - [1127] = {.lex_state = 86, .external_lex_state = 2}, - [1128] = {.lex_state = 27}, - [1129] = {.lex_state = 27}, - [1130] = {.lex_state = 27}, + [1118] = {.lex_state = 26}, + [1119] = {.lex_state = 26}, + [1120] = {.lex_state = 5}, + [1121] = {.lex_state = 5}, + [1122] = {.lex_state = 5}, + [1123] = {.lex_state = 3}, + [1124] = {.lex_state = 3}, + [1125] = {.lex_state = 3}, + [1126] = {.lex_state = 5}, + [1127] = {.lex_state = 86}, + [1128] = {.lex_state = 86}, + [1129] = {.lex_state = 86}, + [1130] = {.lex_state = 86, .external_lex_state = 2}, [1131] = {.lex_state = 27}, [1132] = {.lex_state = 27}, [1133] = {.lex_state = 27}, @@ -7189,83 +7212,83 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1159] = {.lex_state = 27}, [1160] = {.lex_state = 27}, [1161] = {.lex_state = 27}, - [1162] = {.lex_state = 86}, - [1163] = {.lex_state = 86}, - [1164] = {.lex_state = 3}, + [1162] = {.lex_state = 27}, + [1163] = {.lex_state = 27}, + [1164] = {.lex_state = 27}, [1165] = {.lex_state = 27}, - [1166] = {.lex_state = 86}, - [1167] = {.lex_state = 3}, - [1168] = {.lex_state = 27}, + [1166] = {.lex_state = 27}, + [1167] = {.lex_state = 27}, + [1168] = {.lex_state = 86}, [1169] = {.lex_state = 86}, - [1170] = {.lex_state = 86}, + [1170] = {.lex_state = 27}, [1171] = {.lex_state = 86}, [1172] = {.lex_state = 3}, - [1173] = {.lex_state = 27}, - [1174] = {.lex_state = 3}, + [1173] = {.lex_state = 86}, + [1174] = {.lex_state = 86}, [1175] = {.lex_state = 86}, - [1176] = {.lex_state = 86}, - [1177] = {.lex_state = 86}, - [1178] = {.lex_state = 86}, - [1179] = {.lex_state = 3}, - [1180] = {.lex_state = 3}, + [1176] = {.lex_state = 3}, + [1177] = {.lex_state = 3}, + [1178] = {.lex_state = 3}, + [1179] = {.lex_state = 86}, + [1180] = {.lex_state = 86}, [1181] = {.lex_state = 27}, - [1182] = {.lex_state = 86}, + [1182] = {.lex_state = 27}, [1183] = {.lex_state = 86}, [1184] = {.lex_state = 86}, - [1185] = {.lex_state = 3}, + [1185] = {.lex_state = 86}, [1186] = {.lex_state = 3}, [1187] = {.lex_state = 3}, - [1188] = {.lex_state = 85}, - [1189] = {.lex_state = 3}, - [1190] = {.lex_state = 86}, + [1188] = {.lex_state = 86}, + [1189] = {.lex_state = 86}, + [1190] = {.lex_state = 3}, [1191] = {.lex_state = 86}, [1192] = {.lex_state = 86}, [1193] = {.lex_state = 86}, [1194] = {.lex_state = 86}, [1195] = {.lex_state = 86}, - [1196] = {.lex_state = 3}, + [1196] = {.lex_state = 86}, [1197] = {.lex_state = 86}, [1198] = {.lex_state = 86}, - [1199] = {.lex_state = 86}, - [1200] = {.lex_state = 86}, + [1199] = {.lex_state = 3}, + [1200] = {.lex_state = 85}, [1201] = {.lex_state = 86}, - [1202] = {.lex_state = 3}, + [1202] = {.lex_state = 86}, [1203] = {.lex_state = 86}, - [1204] = {.lex_state = 86}, - [1205] = {.lex_state = 3}, + [1204] = {.lex_state = 3}, + [1205] = {.lex_state = 86}, [1206] = {.lex_state = 86}, [1207] = {.lex_state = 86}, [1208] = {.lex_state = 86}, [1209] = {.lex_state = 86}, [1210] = {.lex_state = 86}, [1211] = {.lex_state = 86}, - [1212] = {.lex_state = 86}, + [1212] = {.lex_state = 3}, [1213] = {.lex_state = 86}, [1214] = {.lex_state = 86}, [1215] = {.lex_state = 86}, [1216] = {.lex_state = 86}, - [1217] = {.lex_state = 86}, - [1218] = {.lex_state = 3}, + [1217] = {.lex_state = 3}, + [1218] = {.lex_state = 86}, [1219] = {.lex_state = 3}, - [1220] = {.lex_state = 3}, + [1220] = {.lex_state = 86}, [1221] = {.lex_state = 3}, [1222] = {.lex_state = 86}, [1223] = {.lex_state = 3}, [1224] = {.lex_state = 3}, - [1225] = {.lex_state = 85, .external_lex_state = 4}, + [1225] = {.lex_state = 3}, [1226] = {.lex_state = 3}, - [1227] = {.lex_state = 3}, + [1227] = {.lex_state = 85, .external_lex_state = 4}, [1228] = {.lex_state = 3}, [1229] = {.lex_state = 3}, - [1230] = {.lex_state = 3}, - [1231] = {.lex_state = 86}, - [1232] = {.lex_state = 6, .external_lex_state = 2}, + [1230] = {.lex_state = 86}, + [1231] = {.lex_state = 3}, + [1232] = {.lex_state = 3}, [1233] = {.lex_state = 3}, [1234] = {.lex_state = 3}, - [1235] = {.lex_state = 3, .external_lex_state = 4}, + [1235] = {.lex_state = 3}, [1236] = {.lex_state = 3}, - [1237] = {.lex_state = 3}, - [1238] = {.lex_state = 3}, + [1237] = {.lex_state = 86}, + [1238] = {.lex_state = 3, .external_lex_state = 4}, [1239] = {.lex_state = 3}, [1240] = {.lex_state = 3}, [1241] = {.lex_state = 3}, @@ -7275,410 +7298,410 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1245] = {.lex_state = 3}, [1246] = {.lex_state = 3}, [1247] = {.lex_state = 3}, - [1248] = {.lex_state = 85}, + [1248] = {.lex_state = 3}, [1249] = {.lex_state = 3}, [1250] = {.lex_state = 3}, [1251] = {.lex_state = 3}, - [1252] = {.lex_state = 3}, + [1252] = {.lex_state = 85}, [1253] = {.lex_state = 3}, - [1254] = {.lex_state = 3}, - [1255] = {.lex_state = 86}, + [1254] = {.lex_state = 6, .external_lex_state = 2}, + [1255] = {.lex_state = 3}, [1256] = {.lex_state = 3}, [1257] = {.lex_state = 3}, - [1258] = {.lex_state = 86}, - [1259] = {.lex_state = 3}, + [1258] = {.lex_state = 3}, + [1259] = {.lex_state = 85, .external_lex_state = 4}, [1260] = {.lex_state = 3}, [1261] = {.lex_state = 3}, [1262] = {.lex_state = 3}, - [1263] = {.lex_state = 86}, - [1264] = {.lex_state = 3}, - [1265] = {.lex_state = 85}, - [1266] = {.lex_state = 85}, + [1263] = {.lex_state = 3}, + [1264] = {.lex_state = 85}, + [1265] = {.lex_state = 3}, + [1266] = {.lex_state = 86}, [1267] = {.lex_state = 3}, [1268] = {.lex_state = 3}, [1269] = {.lex_state = 3}, - [1270] = {.lex_state = 3}, - [1271] = {.lex_state = 85, .external_lex_state = 4}, - [1272] = {.lex_state = 3}, - [1273] = {.lex_state = 86}, - [1274] = {.lex_state = 3}, + [1270] = {.lex_state = 85}, + [1271] = {.lex_state = 3}, + [1272] = {.lex_state = 86}, + [1273] = {.lex_state = 85}, + [1274] = {.lex_state = 86}, [1275] = {.lex_state = 3}, - [1276] = {.lex_state = 3}, - [1277] = {.lex_state = 3}, + [1276] = {.lex_state = 86}, + [1277] = {.lex_state = 86}, [1278] = {.lex_state = 3}, [1279] = {.lex_state = 3}, - [1280] = {.lex_state = 3}, + [1280] = {.lex_state = 86}, [1281] = {.lex_state = 85, .external_lex_state = 4}, - [1282] = {.lex_state = 3}, - [1283] = {.lex_state = 85}, + [1282] = {.lex_state = 86}, + [1283] = {.lex_state = 3}, [1284] = {.lex_state = 3}, - [1285] = {.lex_state = 86}, + [1285] = {.lex_state = 3}, [1286] = {.lex_state = 3}, [1287] = {.lex_state = 3}, - [1288] = {.lex_state = 3}, + [1288] = {.lex_state = 85, .external_lex_state = 4}, [1289] = {.lex_state = 3}, - [1290] = {.lex_state = 87, .external_lex_state = 5}, + [1290] = {.lex_state = 3}, [1291] = {.lex_state = 3}, - [1292] = {.lex_state = 85}, - [1293] = {.lex_state = 86}, - [1294] = {.lex_state = 3}, - [1295] = {.lex_state = 85, .external_lex_state = 4}, - [1296] = {.lex_state = 86}, - [1297] = {.lex_state = 86}, + [1292] = {.lex_state = 3}, + [1293] = {.lex_state = 87, .external_lex_state = 5}, + [1294] = {.lex_state = 85, .external_lex_state = 4}, + [1295] = {.lex_state = 3}, + [1296] = {.lex_state = 3}, + [1297] = {.lex_state = 3}, [1298] = {.lex_state = 3}, [1299] = {.lex_state = 3}, [1300] = {.lex_state = 3}, - [1301] = {.lex_state = 85}, + [1301] = {.lex_state = 3}, [1302] = {.lex_state = 3}, - [1303] = {.lex_state = 85, .external_lex_state = 4}, + [1303] = {.lex_state = 86}, [1304] = {.lex_state = 3}, - [1305] = {.lex_state = 86}, - [1306] = {.lex_state = 85, .external_lex_state = 4}, - [1307] = {.lex_state = 3, .external_lex_state = 4}, - [1308] = {.lex_state = 3}, - [1309] = {.lex_state = 85}, + [1305] = {.lex_state = 85}, + [1306] = {.lex_state = 3}, + [1307] = {.lex_state = 3}, + [1308] = {.lex_state = 85}, + [1309] = {.lex_state = 86}, [1310] = {.lex_state = 3}, - [1311] = {.lex_state = 87}, - [1312] = {.lex_state = 3}, - [1313] = {.lex_state = 3}, - [1314] = {.lex_state = 85, .external_lex_state = 4}, + [1311] = {.lex_state = 3}, + [1312] = {.lex_state = 87, .external_lex_state = 5}, + [1313] = {.lex_state = 85, .external_lex_state = 4}, + [1314] = {.lex_state = 86}, [1315] = {.lex_state = 85}, - [1316] = {.lex_state = 87}, + [1316] = {.lex_state = 3}, [1317] = {.lex_state = 3}, [1318] = {.lex_state = 3}, - [1319] = {.lex_state = 3}, + [1319] = {.lex_state = 85, .external_lex_state = 4}, [1320] = {.lex_state = 3}, - [1321] = {.lex_state = 3, .external_lex_state = 4}, - [1322] = {.lex_state = 85, .external_lex_state = 4}, - [1323] = {.lex_state = 85}, - [1324] = {.lex_state = 87, .external_lex_state = 5}, + [1321] = {.lex_state = 85}, + [1322] = {.lex_state = 3}, + [1323] = {.lex_state = 3}, + [1324] = {.lex_state = 3}, [1325] = {.lex_state = 3}, - [1326] = {.lex_state = 3}, - [1327] = {.lex_state = 85}, - [1328] = {.lex_state = 3, .external_lex_state = 4}, + [1326] = {.lex_state = 3, .external_lex_state = 4}, + [1327] = {.lex_state = 85, .external_lex_state = 4}, + [1328] = {.lex_state = 86}, [1329] = {.lex_state = 3}, [1330] = {.lex_state = 3}, - [1331] = {.lex_state = 85, .external_lex_state = 4}, - [1332] = {.lex_state = 3}, + [1331] = {.lex_state = 3, .external_lex_state = 4}, + [1332] = {.lex_state = 3, .external_lex_state = 4}, [1333] = {.lex_state = 3}, - [1334] = {.lex_state = 3}, - [1335] = {.lex_state = 3}, - [1336] = {.lex_state = 3, .external_lex_state = 4}, - [1337] = {.lex_state = 3}, - [1338] = {.lex_state = 85, .external_lex_state = 4}, - [1339] = {.lex_state = 3, .external_lex_state = 4}, - [1340] = {.lex_state = 85}, - [1341] = {.lex_state = 3, .external_lex_state = 4}, + [1334] = {.lex_state = 3, .external_lex_state = 4}, + [1335] = {.lex_state = 85, .external_lex_state = 4}, + [1336] = {.lex_state = 85}, + [1337] = {.lex_state = 3, .external_lex_state = 4}, + [1338] = {.lex_state = 3}, + [1339] = {.lex_state = 3}, + [1340] = {.lex_state = 3}, + [1341] = {.lex_state = 3}, [1342] = {.lex_state = 3}, - [1343] = {.lex_state = 87, .external_lex_state = 5}, - [1344] = {.lex_state = 85, .external_lex_state = 4}, - [1345] = {.lex_state = 3, .external_lex_state = 4}, - [1346] = {.lex_state = 3}, - [1347] = {.lex_state = 3}, - [1348] = {.lex_state = 3, .external_lex_state = 4}, - [1349] = {.lex_state = 3}, + [1343] = {.lex_state = 3}, + [1344] = {.lex_state = 3}, + [1345] = {.lex_state = 3}, + [1346] = {.lex_state = 85}, + [1347] = {.lex_state = 3, .external_lex_state = 4}, + [1348] = {.lex_state = 3}, + [1349] = {.lex_state = 85, .external_lex_state = 4}, [1350] = {.lex_state = 3}, - [1351] = {.lex_state = 3}, - [1352] = {.lex_state = 85}, + [1351] = {.lex_state = 85, .external_lex_state = 4}, + [1352] = {.lex_state = 3}, [1353] = {.lex_state = 85, .external_lex_state = 4}, - [1354] = {.lex_state = 3}, - [1355] = {.lex_state = 85, .external_lex_state = 4}, - [1356] = {.lex_state = 3}, - [1357] = {.lex_state = 3}, - [1358] = {.lex_state = 85, .external_lex_state = 4}, + [1354] = {.lex_state = 85, .external_lex_state = 4}, + [1355] = {.lex_state = 87, .external_lex_state = 5}, + [1356] = {.lex_state = 3, .external_lex_state = 4}, + [1357] = {.lex_state = 85}, + [1358] = {.lex_state = 85}, [1359] = {.lex_state = 3, .external_lex_state = 4}, - [1360] = {.lex_state = 86}, - [1361] = {.lex_state = 3, .external_lex_state = 4}, + [1360] = {.lex_state = 3}, + [1361] = {.lex_state = 3}, [1362] = {.lex_state = 3, .external_lex_state = 4}, - [1363] = {.lex_state = 3, .external_lex_state = 4}, - [1364] = {.lex_state = 3}, - [1365] = {.lex_state = 3}, - [1366] = {.lex_state = 85}, - [1367] = {.lex_state = 86}, - [1368] = {.lex_state = 3, .external_lex_state = 4}, - [1369] = {.lex_state = 85, .external_lex_state = 4}, - [1370] = {.lex_state = 85}, - [1371] = {.lex_state = 3}, + [1363] = {.lex_state = 87}, + [1364] = {.lex_state = 3, .external_lex_state = 4}, + [1365] = {.lex_state = 3, .external_lex_state = 4}, + [1366] = {.lex_state = 3}, + [1367] = {.lex_state = 3, .external_lex_state = 4}, + [1368] = {.lex_state = 3}, + [1369] = {.lex_state = 3, .external_lex_state = 4}, + [1370] = {.lex_state = 3}, + [1371] = {.lex_state = 85, .external_lex_state = 4}, [1372] = {.lex_state = 85, .external_lex_state = 4}, [1373] = {.lex_state = 3}, - [1374] = {.lex_state = 85, .external_lex_state = 4}, + [1374] = {.lex_state = 3}, [1375] = {.lex_state = 3}, - [1376] = {.lex_state = 85, .external_lex_state = 4}, - [1377] = {.lex_state = 85}, - [1378] = {.lex_state = 87}, + [1376] = {.lex_state = 85}, + [1377] = {.lex_state = 85, .external_lex_state = 4}, + [1378] = {.lex_state = 85}, [1379] = {.lex_state = 85, .external_lex_state = 4}, - [1380] = {.lex_state = 3}, - [1381] = {.lex_state = 85, .external_lex_state = 4}, + [1380] = {.lex_state = 87}, + [1381] = {.lex_state = 85}, [1382] = {.lex_state = 85, .external_lex_state = 4}, [1383] = {.lex_state = 85, .external_lex_state = 4}, [1384] = {.lex_state = 3}, - [1385] = {.lex_state = 3}, + [1385] = {.lex_state = 87}, [1386] = {.lex_state = 85, .external_lex_state = 4}, - [1387] = {.lex_state = 85, .external_lex_state = 4}, + [1387] = {.lex_state = 3}, [1388] = {.lex_state = 85, .external_lex_state = 4}, - [1389] = {.lex_state = 3}, + [1389] = {.lex_state = 85}, [1390] = {.lex_state = 85, .external_lex_state = 4}, - [1391] = {.lex_state = 85}, - [1392] = {.lex_state = 85}, - [1393] = {.lex_state = 85}, - [1394] = {.lex_state = 3}, - [1395] = {.lex_state = 85}, + [1391] = {.lex_state = 3}, + [1392] = {.lex_state = 3}, + [1393] = {.lex_state = 87, .external_lex_state = 5}, + [1394] = {.lex_state = 85}, + [1395] = {.lex_state = 3}, [1396] = {.lex_state = 85}, - [1397] = {.lex_state = 85, .external_lex_state = 4}, - [1398] = {.lex_state = 3}, - [1399] = {.lex_state = 85}, - [1400] = {.lex_state = 85}, - [1401] = {.lex_state = 85}, - [1402] = {.lex_state = 85, .external_lex_state = 4}, + [1397] = {.lex_state = 85}, + [1398] = {.lex_state = 85}, + [1399] = {.lex_state = 3}, + [1400] = {.lex_state = 85, .external_lex_state = 4}, + [1401] = {.lex_state = 85, .external_lex_state = 4}, + [1402] = {.lex_state = 85}, [1403] = {.lex_state = 85}, - [1404] = {.lex_state = 85, .external_lex_state = 4}, - [1405] = {.lex_state = 85, .external_lex_state = 4}, - [1406] = {.lex_state = 3}, - [1407] = {.lex_state = 87, .external_lex_state = 5}, + [1404] = {.lex_state = 85}, + [1405] = {.lex_state = 85}, + [1406] = {.lex_state = 85, .external_lex_state = 4}, + [1407] = {.lex_state = 85, .external_lex_state = 4}, [1408] = {.lex_state = 85, .external_lex_state = 4}, - [1409] = {.lex_state = 85}, - [1410] = {.lex_state = 85}, - [1411] = {.lex_state = 85, .external_lex_state = 4}, + [1409] = {.lex_state = 85, .external_lex_state = 4}, + [1410] = {.lex_state = 85, .external_lex_state = 4}, + [1411] = {.lex_state = 85}, [1412] = {.lex_state = 3}, [1413] = {.lex_state = 85}, - [1414] = {.lex_state = 85, .external_lex_state = 4}, + [1414] = {.lex_state = 85}, [1415] = {.lex_state = 85, .external_lex_state = 4}, - [1416] = {.lex_state = 85, .external_lex_state = 4}, + [1416] = {.lex_state = 3}, [1417] = {.lex_state = 85, .external_lex_state = 4}, - [1418] = {.lex_state = 85, .external_lex_state = 4}, - [1419] = {.lex_state = 85}, + [1418] = {.lex_state = 3}, + [1419] = {.lex_state = 85, .external_lex_state = 4}, [1420] = {.lex_state = 85, .external_lex_state = 4}, - [1421] = {.lex_state = 85, .external_lex_state = 4}, - [1422] = {.lex_state = 3}, + [1421] = {.lex_state = 3}, + [1422] = {.lex_state = 85, .external_lex_state = 4}, [1423] = {.lex_state = 85}, - [1424] = {.lex_state = 3}, - [1425] = {.lex_state = 3}, + [1424] = {.lex_state = 85}, + [1425] = {.lex_state = 85, .external_lex_state = 4}, [1426] = {.lex_state = 85, .external_lex_state = 4}, [1427] = {.lex_state = 85, .external_lex_state = 4}, - [1428] = {.lex_state = 85}, + [1428] = {.lex_state = 85, .external_lex_state = 4}, [1429] = {.lex_state = 3}, [1430] = {.lex_state = 85, .external_lex_state = 4}, - [1431] = {.lex_state = 85}, + [1431] = {.lex_state = 85, .external_lex_state = 4}, [1432] = {.lex_state = 85, .external_lex_state = 4}, [1433] = {.lex_state = 85}, [1434] = {.lex_state = 85, .external_lex_state = 4}, [1435] = {.lex_state = 85}, [1436] = {.lex_state = 85, .external_lex_state = 4}, [1437] = {.lex_state = 85, .external_lex_state = 4}, - [1438] = {.lex_state = 85, .external_lex_state = 4}, + [1438] = {.lex_state = 85}, [1439] = {.lex_state = 85, .external_lex_state = 4}, [1440] = {.lex_state = 85, .external_lex_state = 4}, - [1441] = {.lex_state = 85, .external_lex_state = 4}, - [1442] = {.lex_state = 3}, - [1443] = {.lex_state = 3}, - [1444] = {.lex_state = 85}, + [1441] = {.lex_state = 3}, + [1442] = {.lex_state = 85, .external_lex_state = 4}, + [1443] = {.lex_state = 85, .external_lex_state = 4}, + [1444] = {.lex_state = 3}, [1445] = {.lex_state = 85, .external_lex_state = 4}, - [1446] = {.lex_state = 85, .external_lex_state = 4}, - [1447] = {.lex_state = 3}, - [1448] = {.lex_state = 85, .external_lex_state = 4}, + [1446] = {.lex_state = 3}, + [1447] = {.lex_state = 85}, + [1448] = {.lex_state = 3}, [1449] = {.lex_state = 85, .external_lex_state = 4}, [1450] = {.lex_state = 85, .external_lex_state = 4}, - [1451] = {.lex_state = 85}, - [1452] = {.lex_state = 3}, + [1451] = {.lex_state = 3}, + [1452] = {.lex_state = 85, .external_lex_state = 4}, [1453] = {.lex_state = 85, .external_lex_state = 4}, - [1454] = {.lex_state = 85, .external_lex_state = 4}, - [1455] = {.lex_state = 85}, - [1456] = {.lex_state = 85, .external_lex_state = 4}, + [1454] = {.lex_state = 3}, + [1455] = {.lex_state = 85, .external_lex_state = 4}, + [1456] = {.lex_state = 85}, [1457] = {.lex_state = 3}, - [1458] = {.lex_state = 85, .external_lex_state = 4}, + [1458] = {.lex_state = 85}, [1459] = {.lex_state = 85, .external_lex_state = 4}, [1460] = {.lex_state = 85, .external_lex_state = 4}, - [1461] = {.lex_state = 85, .external_lex_state = 4}, - [1462] = {.lex_state = 85, .external_lex_state = 4}, + [1461] = {.lex_state = 85}, + [1462] = {.lex_state = 85}, [1463] = {.lex_state = 85, .external_lex_state = 4}, - [1464] = {.lex_state = 3}, - [1465] = {.lex_state = 3}, - [1466] = {.lex_state = 85}, - [1467] = {.lex_state = 3}, - [1468] = {.lex_state = 85}, + [1464] = {.lex_state = 85, .external_lex_state = 4}, + [1465] = {.lex_state = 85, .external_lex_state = 4}, + [1466] = {.lex_state = 85, .external_lex_state = 4}, + [1467] = {.lex_state = 85, .external_lex_state = 4}, + [1468] = {.lex_state = 85, .external_lex_state = 4}, [1469] = {.lex_state = 85, .external_lex_state = 4}, - [1470] = {.lex_state = 3}, + [1470] = {.lex_state = 85, .external_lex_state = 4}, [1471] = {.lex_state = 85, .external_lex_state = 4}, [1472] = {.lex_state = 3}, - [1473] = {.lex_state = 85, .external_lex_state = 4}, + [1473] = {.lex_state = 85}, [1474] = {.lex_state = 85, .external_lex_state = 4}, [1475] = {.lex_state = 3}, - [1476] = {.lex_state = 85, .external_lex_state = 4}, + [1476] = {.lex_state = 3}, [1477] = {.lex_state = 3}, [1478] = {.lex_state = 3}, - [1479] = {.lex_state = 85, .external_lex_state = 4}, + [1479] = {.lex_state = 85}, [1480] = {.lex_state = 3}, - [1481] = {.lex_state = 3}, - [1482] = {.lex_state = 85}, - [1483] = {.lex_state = 85, .external_lex_state = 4}, - [1484] = {.lex_state = 85, .external_lex_state = 4}, - [1485] = {.lex_state = 85, .external_lex_state = 4}, + [1481] = {.lex_state = 85, .external_lex_state = 4}, + [1482] = {.lex_state = 3}, + [1483] = {.lex_state = 3}, + [1484] = {.lex_state = 3}, + [1485] = {.lex_state = 3}, [1486] = {.lex_state = 3}, - [1487] = {.lex_state = 85}, - [1488] = {.lex_state = 3}, - [1489] = {.lex_state = 85}, + [1487] = {.lex_state = 85, .external_lex_state = 4}, + [1488] = {.lex_state = 85, .external_lex_state = 4}, + [1489] = {.lex_state = 85, .external_lex_state = 4}, [1490] = {.lex_state = 85, .external_lex_state = 4}, - [1491] = {.lex_state = 85}, - [1492] = {.lex_state = 85}, - [1493] = {.lex_state = 3}, + [1491] = {.lex_state = 85, .external_lex_state = 4}, + [1492] = {.lex_state = 85, .external_lex_state = 4}, + [1493] = {.lex_state = 85}, [1494] = {.lex_state = 85}, - [1495] = {.lex_state = 85}, - [1496] = {.lex_state = 85}, - [1497] = {.lex_state = 85}, + [1495] = {.lex_state = 85, .external_lex_state = 4}, + [1496] = {.lex_state = 3}, + [1497] = {.lex_state = 3}, [1498] = {.lex_state = 85}, [1499] = {.lex_state = 3}, [1500] = {.lex_state = 3}, [1501] = {.lex_state = 3}, [1502] = {.lex_state = 3}, [1503] = {.lex_state = 85}, - [1504] = {.lex_state = 85}, - [1505] = {.lex_state = 3}, - [1506] = {.lex_state = 85}, - [1507] = {.lex_state = 3}, + [1504] = {.lex_state = 3}, + [1505] = {.lex_state = 85}, + [1506] = {.lex_state = 3}, + [1507] = {.lex_state = 85}, [1508] = {.lex_state = 85}, [1509] = {.lex_state = 3}, [1510] = {.lex_state = 85}, - [1511] = {.lex_state = 3}, - [1512] = {.lex_state = 85}, + [1511] = {.lex_state = 85}, + [1512] = {.lex_state = 3}, [1513] = {.lex_state = 85}, [1514] = {.lex_state = 85}, - [1515] = {.lex_state = 85}, + [1515] = {.lex_state = 3}, [1516] = {.lex_state = 85}, [1517] = {.lex_state = 85}, - [1518] = {.lex_state = 85, .external_lex_state = 4}, + [1518] = {.lex_state = 85}, [1519] = {.lex_state = 85}, [1520] = {.lex_state = 85}, [1521] = {.lex_state = 3}, [1522] = {.lex_state = 85}, [1523] = {.lex_state = 3}, [1524] = {.lex_state = 85}, - [1525] = {.lex_state = 85}, - [1526] = {.lex_state = 3}, + [1525] = {.lex_state = 3}, + [1526] = {.lex_state = 85, .external_lex_state = 4}, [1527] = {.lex_state = 85}, [1528] = {.lex_state = 85}, - [1529] = {.lex_state = 85}, + [1529] = {.lex_state = 3}, [1530] = {.lex_state = 85}, [1531] = {.lex_state = 85}, [1532] = {.lex_state = 3}, - [1533] = {.lex_state = 3}, + [1533] = {.lex_state = 85}, [1534] = {.lex_state = 85}, [1535] = {.lex_state = 3}, [1536] = {.lex_state = 85}, [1537] = {.lex_state = 85}, [1538] = {.lex_state = 3}, - [1539] = {.lex_state = 3}, - [1540] = {.lex_state = 3}, + [1539] = {.lex_state = 85}, + [1540] = {.lex_state = 85}, [1541] = {.lex_state = 3}, [1542] = {.lex_state = 85}, - [1543] = {.lex_state = 85}, + [1543] = {.lex_state = 3}, [1544] = {.lex_state = 3}, - [1545] = {.lex_state = 3}, - [1546] = {.lex_state = 3}, - [1547] = {.lex_state = 3}, - [1548] = {.lex_state = 3}, - [1549] = {.lex_state = 3}, - [1550] = {.lex_state = 3}, + [1545] = {.lex_state = 85}, + [1546] = {.lex_state = 85}, + [1547] = {.lex_state = 85}, + [1548] = {.lex_state = 85}, + [1549] = {.lex_state = 85}, + [1550] = {.lex_state = 85}, [1551] = {.lex_state = 85}, [1552] = {.lex_state = 85}, - [1553] = {.lex_state = 3}, - [1554] = {.lex_state = 85}, - [1555] = {.lex_state = 85}, + [1553] = {.lex_state = 85}, + [1554] = {.lex_state = 3}, + [1555] = {.lex_state = 3}, [1556] = {.lex_state = 3}, [1557] = {.lex_state = 85}, [1558] = {.lex_state = 85}, [1559] = {.lex_state = 85}, [1560] = {.lex_state = 85}, - [1561] = {.lex_state = 3}, + [1561] = {.lex_state = 85}, [1562] = {.lex_state = 85}, - [1563] = {.lex_state = 3}, + [1563] = {.lex_state = 85}, [1564] = {.lex_state = 3}, - [1565] = {.lex_state = 3}, - [1566] = {.lex_state = 85}, - [1567] = {.lex_state = 85}, + [1565] = {.lex_state = 85}, + [1566] = {.lex_state = 3}, + [1567] = {.lex_state = 3}, [1568] = {.lex_state = 3}, - [1569] = {.lex_state = 3}, - [1570] = {.lex_state = 85, .external_lex_state = 4}, + [1569] = {.lex_state = 85, .external_lex_state = 4}, + [1570] = {.lex_state = 3}, [1571] = {.lex_state = 3}, - [1572] = {.lex_state = 3}, + [1572] = {.lex_state = 85}, [1573] = {.lex_state = 85}, - [1574] = {.lex_state = 3}, - [1575] = {.lex_state = 3}, + [1574] = {.lex_state = 85}, + [1575] = {.lex_state = 85}, [1576] = {.lex_state = 3}, - [1577] = {.lex_state = 3}, - [1578] = {.lex_state = 3}, - [1579] = {.lex_state = 3}, + [1577] = {.lex_state = 85}, + [1578] = {.lex_state = 85, .external_lex_state = 4}, + [1579] = {.lex_state = 85}, [1580] = {.lex_state = 85, .external_lex_state = 4}, - [1581] = {.lex_state = 3}, - [1582] = {.lex_state = 3}, + [1581] = {.lex_state = 85}, + [1582] = {.lex_state = 85}, [1583] = {.lex_state = 85}, - [1584] = {.lex_state = 3}, - [1585] = {.lex_state = 85}, + [1584] = {.lex_state = 85}, + [1585] = {.lex_state = 3}, [1586] = {.lex_state = 3}, - [1587] = {.lex_state = 85}, + [1587] = {.lex_state = 3}, [1588] = {.lex_state = 3}, - [1589] = {.lex_state = 3}, - [1590] = {.lex_state = 3}, + [1589] = {.lex_state = 85}, + [1590] = {.lex_state = 85}, [1591] = {.lex_state = 85}, - [1592] = {.lex_state = 3}, + [1592] = {.lex_state = 85}, [1593] = {.lex_state = 3}, - [1594] = {.lex_state = 85}, + [1594] = {.lex_state = 3}, [1595] = {.lex_state = 3}, - [1596] = {.lex_state = 85}, - [1597] = {.lex_state = 85}, + [1596] = {.lex_state = 85, .external_lex_state = 4}, + [1597] = {.lex_state = 3}, [1598] = {.lex_state = 3}, [1599] = {.lex_state = 3}, [1600] = {.lex_state = 3}, - [1601] = {.lex_state = 3}, - [1602] = {.lex_state = 3}, - [1603] = {.lex_state = 3}, - [1604] = {.lex_state = 85}, + [1601] = {.lex_state = 85, .external_lex_state = 4}, + [1602] = {.lex_state = 85}, + [1603] = {.lex_state = 85, .external_lex_state = 4}, + [1604] = {.lex_state = 3}, [1605] = {.lex_state = 3}, [1606] = {.lex_state = 3}, [1607] = {.lex_state = 3}, [1608] = {.lex_state = 85}, [1609] = {.lex_state = 3}, - [1610] = {.lex_state = 85}, + [1610] = {.lex_state = 85, .external_lex_state = 4}, [1611] = {.lex_state = 85}, [1612] = {.lex_state = 85}, - [1613] = {.lex_state = 3}, + [1613] = {.lex_state = 85, .external_lex_state = 4}, [1614] = {.lex_state = 3}, - [1615] = {.lex_state = 3}, - [1616] = {.lex_state = 3}, - [1617] = {.lex_state = 85}, - [1618] = {.lex_state = 3}, + [1615] = {.lex_state = 85}, + [1616] = {.lex_state = 85}, + [1617] = {.lex_state = 3}, + [1618] = {.lex_state = 85}, [1619] = {.lex_state = 3}, [1620] = {.lex_state = 3}, [1621] = {.lex_state = 3}, - [1622] = {.lex_state = 3}, + [1622] = {.lex_state = 85}, [1623] = {.lex_state = 3}, [1624] = {.lex_state = 3}, - [1625] = {.lex_state = 3}, - [1626] = {.lex_state = 3}, - [1627] = {.lex_state = 85}, - [1628] = {.lex_state = 85}, + [1625] = {.lex_state = 85}, + [1626] = {.lex_state = 85}, + [1627] = {.lex_state = 3}, + [1628] = {.lex_state = 3}, [1629] = {.lex_state = 85}, [1630] = {.lex_state = 3}, [1631] = {.lex_state = 85}, [1632] = {.lex_state = 85}, [1633] = {.lex_state = 85}, - [1634] = {.lex_state = 85}, - [1635] = {.lex_state = 3}, + [1634] = {.lex_state = 3}, + [1635] = {.lex_state = 85}, [1636] = {.lex_state = 85}, [1637] = {.lex_state = 85}, - [1638] = {.lex_state = 85, .external_lex_state = 4}, + [1638] = {.lex_state = 85}, [1639] = {.lex_state = 85}, - [1640] = {.lex_state = 85, .external_lex_state = 4}, + [1640] = {.lex_state = 85}, [1641] = {.lex_state = 85}, - [1642] = {.lex_state = 3}, - [1643] = {.lex_state = 3}, - [1644] = {.lex_state = 85}, - [1645] = {.lex_state = 85}, - [1646] = {.lex_state = 85}, - [1647] = {.lex_state = 85}, - [1648] = {.lex_state = 85}, - [1649] = {.lex_state = 85, .external_lex_state = 4}, + [1642] = {.lex_state = 85}, + [1643] = {.lex_state = 85}, + [1644] = {.lex_state = 3}, + [1645] = {.lex_state = 3}, + [1646] = {.lex_state = 3}, + [1647] = {.lex_state = 3}, + [1648] = {.lex_state = 3}, + [1649] = {.lex_state = 3}, [1650] = {.lex_state = 85}, - [1651] = {.lex_state = 85}, + [1651] = {.lex_state = 3}, [1652] = {.lex_state = 85}, [1653] = {.lex_state = 85}, [1654] = {.lex_state = 85}, @@ -7686,125 +7709,125 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1656] = {.lex_state = 85}, [1657] = {.lex_state = 85}, [1658] = {.lex_state = 3}, - [1659] = {.lex_state = 85}, - [1660] = {.lex_state = 85}, + [1659] = {.lex_state = 3}, + [1660] = {.lex_state = 3}, [1661] = {.lex_state = 85}, - [1662] = {.lex_state = 3, .external_lex_state = 4}, - [1663] = {.lex_state = 3}, + [1662] = {.lex_state = 3}, + [1663] = {.lex_state = 85}, [1664] = {.lex_state = 85}, [1665] = {.lex_state = 85}, - [1666] = {.lex_state = 85}, + [1666] = {.lex_state = 85, .external_lex_state = 4}, [1667] = {.lex_state = 85}, [1668] = {.lex_state = 3}, [1669] = {.lex_state = 3}, [1670] = {.lex_state = 85}, - [1671] = {.lex_state = 3}, - [1672] = {.lex_state = 85}, - [1673] = {.lex_state = 85}, - [1674] = {.lex_state = 85}, - [1675] = {.lex_state = 85}, - [1676] = {.lex_state = 85}, + [1671] = {.lex_state = 85}, + [1672] = {.lex_state = 3}, + [1673] = {.lex_state = 3}, + [1674] = {.lex_state = 3}, + [1675] = {.lex_state = 3}, + [1676] = {.lex_state = 3}, [1677] = {.lex_state = 3}, [1678] = {.lex_state = 85}, [1679] = {.lex_state = 85}, [1680] = {.lex_state = 85}, - [1681] = {.lex_state = 3}, - [1682] = {.lex_state = 85, .external_lex_state = 4}, - [1683] = {.lex_state = 3}, + [1681] = {.lex_state = 85}, + [1682] = {.lex_state = 85}, + [1683] = {.lex_state = 85, .external_lex_state = 4}, [1684] = {.lex_state = 85}, - [1685] = {.lex_state = 85, .external_lex_state = 4}, - [1686] = {.lex_state = 3, .external_lex_state = 4}, - [1687] = {.lex_state = 85, .external_lex_state = 4}, - [1688] = {.lex_state = 3}, - [1689] = {.lex_state = 85}, + [1685] = {.lex_state = 3}, + [1686] = {.lex_state = 3}, + [1687] = {.lex_state = 3}, + [1688] = {.lex_state = 85}, + [1689] = {.lex_state = 3}, [1690] = {.lex_state = 3}, - [1691] = {.lex_state = 85}, - [1692] = {.lex_state = 3}, - [1693] = {.lex_state = 85, .external_lex_state = 4}, + [1691] = {.lex_state = 3}, + [1692] = {.lex_state = 85}, + [1693] = {.lex_state = 85}, [1694] = {.lex_state = 85}, [1695] = {.lex_state = 85}, [1696] = {.lex_state = 85}, - [1697] = {.lex_state = 85, .external_lex_state = 4}, - [1698] = {.lex_state = 85}, + [1697] = {.lex_state = 85}, + [1698] = {.lex_state = 3, .external_lex_state = 4}, [1699] = {.lex_state = 85}, [1700] = {.lex_state = 85}, [1701] = {.lex_state = 85}, [1702] = {.lex_state = 85}, - [1703] = {.lex_state = 85}, + [1703] = {.lex_state = 3}, [1704] = {.lex_state = 85}, [1705] = {.lex_state = 85}, [1706] = {.lex_state = 85}, - [1707] = {.lex_state = 85}, - [1708] = {.lex_state = 3}, + [1707] = {.lex_state = 3}, + [1708] = {.lex_state = 85}, [1709] = {.lex_state = 85}, - [1710] = {.lex_state = 3}, - [1711] = {.lex_state = 85}, + [1710] = {.lex_state = 85}, + [1711] = {.lex_state = 3}, [1712] = {.lex_state = 85}, [1713] = {.lex_state = 3}, - [1714] = {.lex_state = 85}, - [1715] = {.lex_state = 85}, - [1716] = {.lex_state = 85}, + [1714] = {.lex_state = 3}, + [1715] = {.lex_state = 3}, + [1716] = {.lex_state = 3, .external_lex_state = 4}, [1717] = {.lex_state = 85}, [1718] = {.lex_state = 85}, - [1719] = {.lex_state = 85}, - [1720] = {.lex_state = 3}, - [1721] = {.lex_state = 3}, + [1719] = {.lex_state = 3}, + [1720] = {.lex_state = 85}, + [1721] = {.lex_state = 85}, [1722] = {.lex_state = 85}, - [1723] = {.lex_state = 3}, - [1724] = {.lex_state = 85}, + [1723] = {.lex_state = 85}, + [1724] = {.lex_state = 3}, [1725] = {.lex_state = 85}, [1726] = {.lex_state = 3}, [1727] = {.lex_state = 85}, - [1728] = {.lex_state = 85, .external_lex_state = 4}, + [1728] = {.lex_state = 3}, [1729] = {.lex_state = 85}, - [1730] = {.lex_state = 85}, - [1731] = {.lex_state = 85}, - [1732] = {.lex_state = 3}, - [1733] = {.lex_state = 85}, + [1730] = {.lex_state = 3}, + [1731] = {.lex_state = 85, .external_lex_state = 4}, + [1732] = {.lex_state = 85}, + [1733] = {.lex_state = 3}, [1734] = {.lex_state = 3}, [1735] = {.lex_state = 85}, [1736] = {.lex_state = 85}, - [1737] = {.lex_state = 85}, - [1738] = {.lex_state = 86}, - [1739] = {.lex_state = 85}, + [1737] = {.lex_state = 3}, + [1738] = {.lex_state = 3}, + [1739] = {.lex_state = 3}, [1740] = {.lex_state = 85, .external_lex_state = 4}, - [1741] = {.lex_state = 85}, + [1741] = {.lex_state = 85, .external_lex_state = 4}, [1742] = {.lex_state = 85}, - [1743] = {.lex_state = 86, .external_lex_state = 5}, - [1744] = {.lex_state = 85, .external_lex_state = 4}, + [1743] = {.lex_state = 85}, + [1744] = {.lex_state = 86}, [1745] = {.lex_state = 85}, [1746] = {.lex_state = 85}, - [1747] = {.lex_state = 3}, - [1748] = {.lex_state = 3}, - [1749] = {.lex_state = 85}, + [1747] = {.lex_state = 85, .external_lex_state = 4}, + [1748] = {.lex_state = 85}, + [1749] = {.lex_state = 86, .external_lex_state = 5}, [1750] = {.lex_state = 85}, [1751] = {.lex_state = 3}, [1752] = {.lex_state = 85}, - [1753] = {.lex_state = 85, .external_lex_state = 4}, + [1753] = {.lex_state = 3}, [1754] = {.lex_state = 85}, - [1755] = {.lex_state = 3}, + [1755] = {.lex_state = 85, .external_lex_state = 4}, [1756] = {.lex_state = 85}, [1757] = {.lex_state = 85}, - [1758] = {.lex_state = 85}, - [1759] = {.lex_state = 85, .external_lex_state = 4}, - [1760] = {.lex_state = 85, .external_lex_state = 4}, - [1761] = {.lex_state = 85, .external_lex_state = 4}, + [1758] = {.lex_state = 3}, + [1759] = {.lex_state = 85}, + [1760] = {.lex_state = 85}, + [1761] = {.lex_state = 85}, [1762] = {.lex_state = 85}, - [1763] = {.lex_state = 85, .external_lex_state = 4}, - [1764] = {.lex_state = 85}, - [1765] = {.lex_state = 85}, - [1766] = {.lex_state = 85}, + [1763] = {.lex_state = 3}, + [1764] = {.lex_state = 85, .external_lex_state = 4}, + [1765] = {.lex_state = 85, .external_lex_state = 4}, + [1766] = {.lex_state = 85, .external_lex_state = 4}, [1767] = {.lex_state = 85}, [1768] = {.lex_state = 85}, - [1769] = {.lex_state = 85, .external_lex_state = 4}, + [1769] = {.lex_state = 85}, [1770] = {.lex_state = 85}, [1771] = {.lex_state = 85}, [1772] = {.lex_state = 85}, [1773] = {.lex_state = 85, .external_lex_state = 4}, - [1774] = {.lex_state = 85}, - [1775] = {.lex_state = 85, .external_lex_state = 4}, + [1774] = {.lex_state = 85, .external_lex_state = 4}, + [1775] = {.lex_state = 85}, [1776] = {.lex_state = 85}, - [1777] = {.lex_state = 85, .external_lex_state = 4}, + [1777] = {.lex_state = 85}, [1778] = {.lex_state = 85}, [1779] = {.lex_state = 85}, [1780] = {.lex_state = 85}, @@ -7812,182 +7835,182 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1782] = {.lex_state = 85}, [1783] = {.lex_state = 85}, [1784] = {.lex_state = 85}, - [1785] = {.lex_state = 85}, + [1785] = {.lex_state = 85, .external_lex_state = 4}, [1786] = {.lex_state = 85}, [1787] = {.lex_state = 85}, - [1788] = {.lex_state = 85}, - [1789] = {.lex_state = 85}, + [1788] = {.lex_state = 85, .external_lex_state = 4}, + [1789] = {.lex_state = 85, .external_lex_state = 4}, [1790] = {.lex_state = 85}, [1791] = {.lex_state = 85}, [1792] = {.lex_state = 85}, [1793] = {.lex_state = 85}, [1794] = {.lex_state = 85}, - [1795] = {.lex_state = 85}, + [1795] = {.lex_state = 85, .external_lex_state = 4}, [1796] = {.lex_state = 85}, - [1797] = {.lex_state = 85}, - [1798] = {.lex_state = 85}, + [1797] = {.lex_state = 85, .external_lex_state = 4}, + [1798] = {.lex_state = 85, .external_lex_state = 4}, [1799] = {.lex_state = 85}, [1800] = {.lex_state = 85}, [1801] = {.lex_state = 85}, [1802] = {.lex_state = 85}, - [1803] = {.lex_state = 85}, - [1804] = {.lex_state = 85}, - [1805] = {.lex_state = 85}, + [1803] = {.lex_state = 85, .external_lex_state = 4}, + [1804] = {.lex_state = 85, .external_lex_state = 4}, + [1805] = {.lex_state = 85, .external_lex_state = 4}, [1806] = {.lex_state = 85}, - [1807] = {.lex_state = 85}, - [1808] = {.lex_state = 85, .external_lex_state = 4}, - [1809] = {.lex_state = 85}, + [1807] = {.lex_state = 85, .external_lex_state = 4}, + [1808] = {.lex_state = 85}, + [1809] = {.lex_state = 85, .external_lex_state = 4}, [1810] = {.lex_state = 85, .external_lex_state = 4}, [1811] = {.lex_state = 85}, - [1812] = {.lex_state = 85, .external_lex_state = 4}, - [1813] = {.lex_state = 85}, - [1814] = {.lex_state = 85, .external_lex_state = 4}, - [1815] = {.lex_state = 85, .external_lex_state = 4}, - [1816] = {.lex_state = 85, .external_lex_state = 4}, + [1812] = {.lex_state = 85}, + [1813] = {.lex_state = 85, .external_lex_state = 4}, + [1814] = {.lex_state = 85}, + [1815] = {.lex_state = 85}, + [1816] = {.lex_state = 85}, [1817] = {.lex_state = 85}, [1818] = {.lex_state = 85}, - [1819] = {.lex_state = 85, .external_lex_state = 4}, + [1819] = {.lex_state = 85}, [1820] = {.lex_state = 85, .external_lex_state = 4}, [1821] = {.lex_state = 85}, [1822] = {.lex_state = 85}, [1823] = {.lex_state = 85, .external_lex_state = 4}, - [1824] = {.lex_state = 85, .external_lex_state = 4}, + [1824] = {.lex_state = 85}, [1825] = {.lex_state = 85, .external_lex_state = 4}, [1826] = {.lex_state = 85}, [1827] = {.lex_state = 85}, - [1828] = {.lex_state = 85, .external_lex_state = 4}, + [1828] = {.lex_state = 85}, [1829] = {.lex_state = 85}, [1830] = {.lex_state = 85}, [1831] = {.lex_state = 85}, - [1832] = {.lex_state = 85, .external_lex_state = 4}, - [1833] = {.lex_state = 85, .external_lex_state = 4}, + [1832] = {.lex_state = 85}, + [1833] = {.lex_state = 85}, [1834] = {.lex_state = 85}, [1835] = {.lex_state = 85}, [1836] = {.lex_state = 85}, [1837] = {.lex_state = 85}, - [1838] = {.lex_state = 85, .external_lex_state = 4}, + [1838] = {.lex_state = 85}, [1839] = {.lex_state = 85}, [1840] = {.lex_state = 85}, - [1841] = {.lex_state = 3}, - [1842] = {.lex_state = 85, .external_lex_state = 4}, + [1841] = {.lex_state = 85}, + [1842] = {.lex_state = 85}, [1843] = {.lex_state = 85}, [1844] = {.lex_state = 85}, [1845] = {.lex_state = 85}, [1846] = {.lex_state = 85}, [1847] = {.lex_state = 85}, [1848] = {.lex_state = 85}, - [1849] = {.lex_state = 85}, + [1849] = {.lex_state = 85, .external_lex_state = 4}, [1850] = {.lex_state = 85}, - [1851] = {.lex_state = 85, .external_lex_state = 4}, - [1852] = {.lex_state = 85, .external_lex_state = 4}, + [1851] = {.lex_state = 85}, + [1852] = {.lex_state = 85}, [1853] = {.lex_state = 85}, [1854] = {.lex_state = 85, .external_lex_state = 4}, - [1855] = {.lex_state = 85}, + [1855] = {.lex_state = 85, .external_lex_state = 4}, [1856] = {.lex_state = 85}, - [1857] = {.lex_state = 85}, + [1857] = {.lex_state = 85, .external_lex_state = 4}, [1858] = {.lex_state = 85, .external_lex_state = 4}, [1859] = {.lex_state = 85}, - [1860] = {.lex_state = 85, .external_lex_state = 4}, - [1861] = {.lex_state = 85}, + [1860] = {.lex_state = 85}, + [1861] = {.lex_state = 85, .external_lex_state = 4}, [1862] = {.lex_state = 85}, - [1863] = {.lex_state = 85, .external_lex_state = 4}, + [1863] = {.lex_state = 85}, [1864] = {.lex_state = 85}, [1865] = {.lex_state = 85}, [1866] = {.lex_state = 85}, - [1867] = {.lex_state = 85}, - [1868] = {.lex_state = 85, .external_lex_state = 4}, + [1867] = {.lex_state = 85, .external_lex_state = 4}, + [1868] = {.lex_state = 85}, [1869] = {.lex_state = 85}, [1870] = {.lex_state = 85}, - [1871] = {.lex_state = 85, .external_lex_state = 4}, - [1872] = {.lex_state = 85, .external_lex_state = 4}, - [1873] = {.lex_state = 85}, - [1874] = {.lex_state = 85, .external_lex_state = 4}, + [1871] = {.lex_state = 85}, + [1872] = {.lex_state = 85}, + [1873] = {.lex_state = 85, .external_lex_state = 4}, + [1874] = {.lex_state = 85}, [1875] = {.lex_state = 85}, - [1876] = {.lex_state = 85}, + [1876] = {.lex_state = 85, .external_lex_state = 4}, [1877] = {.lex_state = 85, .external_lex_state = 4}, [1878] = {.lex_state = 85}, [1879] = {.lex_state = 85}, - [1880] = {.lex_state = 85}, + [1880] = {.lex_state = 85, .external_lex_state = 4}, [1881] = {.lex_state = 85}, [1882] = {.lex_state = 85}, - [1883] = {.lex_state = 85}, - [1884] = {.lex_state = 85}, + [1883] = {.lex_state = 85, .external_lex_state = 4}, + [1884] = {.lex_state = 85, .external_lex_state = 4}, [1885] = {.lex_state = 85, .external_lex_state = 4}, [1886] = {.lex_state = 85}, [1887] = {.lex_state = 85}, - [1888] = {.lex_state = 85, .external_lex_state = 4}, + [1888] = {.lex_state = 85}, [1889] = {.lex_state = 85, .external_lex_state = 4}, - [1890] = {.lex_state = 85, .external_lex_state = 4}, - [1891] = {.lex_state = 85}, - [1892] = {.lex_state = 85}, + [1890] = {.lex_state = 85}, + [1891] = {.lex_state = 85, .external_lex_state = 4}, + [1892] = {.lex_state = 85, .external_lex_state = 4}, [1893] = {.lex_state = 85}, [1894] = {.lex_state = 85}, [1895] = {.lex_state = 85}, - [1896] = {.lex_state = 85}, + [1896] = {.lex_state = 85, .external_lex_state = 4}, [1897] = {.lex_state = 85}, [1898] = {.lex_state = 85}, [1899] = {.lex_state = 85}, - [1900] = {.lex_state = 85, .external_lex_state = 4}, + [1900] = {.lex_state = 85}, [1901] = {.lex_state = 85}, - [1902] = {.lex_state = 85}, + [1902] = {.lex_state = 85, .external_lex_state = 4}, [1903] = {.lex_state = 85}, - [1904] = {.lex_state = 85}, - [1905] = {.lex_state = 85}, - [1906] = {.lex_state = 85, .external_lex_state = 4}, + [1904] = {.lex_state = 85, .external_lex_state = 4}, + [1905] = {.lex_state = 85, .external_lex_state = 4}, + [1906] = {.lex_state = 85}, [1907] = {.lex_state = 85}, [1908] = {.lex_state = 85}, [1909] = {.lex_state = 85}, - [1910] = {.lex_state = 85}, - [1911] = {.lex_state = 3}, + [1910] = {.lex_state = 85, .external_lex_state = 4}, + [1911] = {.lex_state = 85, .external_lex_state = 4}, [1912] = {.lex_state = 85, .external_lex_state = 4}, - [1913] = {.lex_state = 85, .external_lex_state = 4}, - [1914] = {.lex_state = 85}, - [1915] = {.lex_state = 85}, + [1913] = {.lex_state = 85}, + [1914] = {.lex_state = 3}, + [1915] = {.lex_state = 3}, [1916] = {.lex_state = 85}, - [1917] = {.lex_state = 3}, - [1918] = {.lex_state = 85, .external_lex_state = 4}, + [1917] = {.lex_state = 85}, + [1918] = {.lex_state = 85}, [1919] = {.lex_state = 85}, [1920] = {.lex_state = 85}, - [1921] = {.lex_state = 85, .external_lex_state = 4}, + [1921] = {.lex_state = 3}, [1922] = {.lex_state = 85, .external_lex_state = 4}, - [1923] = {.lex_state = 85, .external_lex_state = 4}, - [1924] = {.lex_state = 85}, + [1923] = {.lex_state = 85}, + [1924] = {.lex_state = 85, .external_lex_state = 4}, [1925] = {.lex_state = 85}, [1926] = {.lex_state = 85}, [1927] = {.lex_state = 85}, [1928] = {.lex_state = 85}, - [1929] = {.lex_state = 85}, - [1930] = {.lex_state = 85, .external_lex_state = 4}, - [1931] = {.lex_state = 85, .external_lex_state = 4}, + [1929] = {.lex_state = 85, .external_lex_state = 4}, + [1930] = {.lex_state = 85}, + [1931] = {.lex_state = 85}, [1932] = {.lex_state = 85}, - [1933] = {.lex_state = 85, .external_lex_state = 4}, - [1934] = {.lex_state = 85}, + [1933] = {.lex_state = 85}, + [1934] = {.lex_state = 85, .external_lex_state = 4}, [1935] = {.lex_state = 85}, [1936] = {.lex_state = 85}, [1937] = {.lex_state = 85, .external_lex_state = 4}, [1938] = {.lex_state = 85}, - [1939] = {.lex_state = 85, .external_lex_state = 4}, - [1940] = {.lex_state = 85, .external_lex_state = 4}, + [1939] = {.lex_state = 85}, + [1940] = {.lex_state = 85}, [1941] = {.lex_state = 85}, - [1942] = {.lex_state = 85}, - [1943] = {.lex_state = 3}, + [1942] = {.lex_state = 85, .external_lex_state = 4}, + [1943] = {.lex_state = 85}, [1944] = {.lex_state = 85}, [1945] = {.lex_state = 85}, - [1946] = {.lex_state = 85}, + [1946] = {.lex_state = 85, .external_lex_state = 4}, [1947] = {.lex_state = 85}, - [1948] = {.lex_state = 85}, + [1948] = {.lex_state = 3}, [1949] = {.lex_state = 85}, - [1950] = {.lex_state = 3}, + [1950] = {.lex_state = 85}, [1951] = {.lex_state = 85}, - [1952] = {.lex_state = 85}, - [1953] = {.lex_state = 85}, + [1952] = {.lex_state = 3}, + [1953] = {.lex_state = 3}, [1954] = {.lex_state = 85}, - [1955] = {.lex_state = 3}, - [1956] = {.lex_state = 3}, + [1955] = {.lex_state = 85}, + [1956] = {.lex_state = 85}, [1957] = {.lex_state = 85}, [1958] = {.lex_state = 85}, [1959] = {.lex_state = 85}, - [1960] = {.lex_state = 3}, + [1960] = {.lex_state = 85}, [1961] = {.lex_state = 85}, [1962] = {.lex_state = 85}, [1963] = {.lex_state = 85}, @@ -8004,46 +8027,46 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1974] = {.lex_state = 85}, [1975] = {.lex_state = 85}, [1976] = {.lex_state = 85}, - [1977] = {.lex_state = 85}, + [1977] = {.lex_state = 3}, [1978] = {.lex_state = 85}, [1979] = {.lex_state = 85}, - [1980] = {.lex_state = 85}, + [1980] = {.lex_state = 3}, [1981] = {.lex_state = 85}, [1982] = {.lex_state = 85}, - [1983] = {.lex_state = 3}, - [1984] = {.lex_state = 3}, - [1985] = {.lex_state = 85}, - [1986] = {.lex_state = 3}, + [1983] = {.lex_state = 85}, + [1984] = {.lex_state = 85}, + [1985] = {.lex_state = 3}, + [1986] = {.lex_state = 85}, [1987] = {.lex_state = 85}, [1988] = {.lex_state = 85}, [1989] = {.lex_state = 3}, [1990] = {.lex_state = 85}, [1991] = {.lex_state = 85}, - [1992] = {.lex_state = 3}, - [1993] = {.lex_state = 85}, + [1992] = {.lex_state = 85}, + [1993] = {.lex_state = 3}, [1994] = {.lex_state = 85}, [1995] = {.lex_state = 85}, - [1996] = {.lex_state = 3}, - [1997] = {.lex_state = 85}, - [1998] = {.lex_state = 3}, + [1996] = {.lex_state = 85}, + [1997] = {.lex_state = 3}, + [1998] = {.lex_state = 85}, [1999] = {.lex_state = 3}, - [2000] = {.lex_state = 85}, - [2001] = {.lex_state = 85}, + [2000] = {.lex_state = 3}, + [2001] = {.lex_state = 3}, [2002] = {.lex_state = 85}, - [2003] = {.lex_state = 85}, + [2003] = {.lex_state = 3}, [2004] = {.lex_state = 3}, [2005] = {.lex_state = 3}, [2006] = {.lex_state = 85}, - [2007] = {.lex_state = 85}, - [2008] = {.lex_state = 3}, - [2009] = {.lex_state = 85}, - [2010] = {.lex_state = 85}, + [2007] = {.lex_state = 3}, + [2008] = {.lex_state = 85}, + [2009] = {.lex_state = 3}, + [2010] = {.lex_state = 3}, [2011] = {.lex_state = 85}, [2012] = {.lex_state = 85}, [2013] = {.lex_state = 85}, [2014] = {.lex_state = 85}, - [2015] = {.lex_state = 85}, - [2016] = {.lex_state = 3}, + [2015] = {.lex_state = 3}, + [2016] = {.lex_state = 85}, [2017] = {.lex_state = 85}, [2018] = {.lex_state = 85}, [2019] = {.lex_state = 85}, @@ -8051,92 +8074,98 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2021] = {.lex_state = 85}, [2022] = {.lex_state = 85}, [2023] = {.lex_state = 85}, - [2024] = {.lex_state = 3}, - [2025] = {.lex_state = 3}, + [2024] = {.lex_state = 85}, + [2025] = {.lex_state = 85}, [2026] = {.lex_state = 85}, [2027] = {.lex_state = 85}, - [2028] = {.lex_state = 85}, + [2028] = {.lex_state = 3}, [2029] = {.lex_state = 85}, - [2030] = {.lex_state = 85}, + [2030] = {.lex_state = 3}, [2031] = {.lex_state = 85}, - [2032] = {.lex_state = 3}, + [2032] = {.lex_state = 85}, [2033] = {.lex_state = 85}, - [2034] = {.lex_state = 3}, - [2035] = {.lex_state = 3}, - [2036] = {.lex_state = 85}, + [2034] = {.lex_state = 85}, + [2035] = {.lex_state = 85}, + [2036] = {.lex_state = 3}, [2037] = {.lex_state = 85}, - [2038] = {.lex_state = 3}, + [2038] = {.lex_state = 85}, [2039] = {.lex_state = 3}, [2040] = {.lex_state = 85}, - [2041] = {.lex_state = 3}, + [2041] = {.lex_state = 85}, [2042] = {.lex_state = 3}, [2043] = {.lex_state = 3}, - [2044] = {.lex_state = 3}, - [2045] = {.lex_state = 85}, - [2046] = {.lex_state = 85}, - [2047] = {.lex_state = 3}, - [2048] = {.lex_state = 85}, + [2044] = {.lex_state = 85}, + [2045] = {.lex_state = 3}, + [2046] = {.lex_state = 3}, + [2047] = {.lex_state = 85}, + [2048] = {.lex_state = 3}, [2049] = {.lex_state = 3}, - [2050] = {.lex_state = 3}, + [2050] = {.lex_state = 85}, [2051] = {.lex_state = 85}, [2052] = {.lex_state = 85}, [2053] = {.lex_state = 85}, [2054] = {.lex_state = 3}, - [2055] = {.lex_state = 85}, + [2055] = {.lex_state = 3}, [2056] = {.lex_state = 85}, [2057] = {.lex_state = 3}, [2058] = {.lex_state = 3}, [2059] = {.lex_state = 85}, [2060] = {.lex_state = 3}, [2061] = {.lex_state = 85}, - [2062] = {.lex_state = 85}, - [2063] = {.lex_state = 3}, - [2064] = {.lex_state = 3}, - [2065] = {.lex_state = 3}, + [2062] = {.lex_state = 3}, + [2063] = {.lex_state = 85}, + [2064] = {.lex_state = 85}, + [2065] = {.lex_state = 85}, [2066] = {.lex_state = 3}, - [2067] = {.lex_state = 3}, + [2067] = {.lex_state = 85}, [2068] = {.lex_state = 85}, - [2069] = {.lex_state = 85}, + [2069] = {.lex_state = 3}, [2070] = {.lex_state = 3}, [2071] = {.lex_state = 85}, [2072] = {.lex_state = 3}, - [2073] = {.lex_state = 85}, + [2073] = {.lex_state = 3}, [2074] = {.lex_state = 3}, - [2075] = {.lex_state = 3}, - [2076] = {.lex_state = 85}, + [2075] = {.lex_state = 85}, + [2076] = {.lex_state = 3}, [2077] = {.lex_state = 85}, - [2078] = {.lex_state = 85}, - [2079] = {.lex_state = 3}, - [2080] = {.lex_state = 85}, - [2081] = {.lex_state = 85}, - [2082] = {.lex_state = 3}, + [2078] = {.lex_state = 3}, + [2079] = {.lex_state = 85}, + [2080] = {.lex_state = 3}, + [2081] = {.lex_state = 3}, + [2082] = {.lex_state = 85}, [2083] = {.lex_state = 85}, - [2084] = {.lex_state = 3}, + [2084] = {.lex_state = 85}, [2085] = {.lex_state = 85}, [2086] = {.lex_state = 85}, [2087] = {.lex_state = 85}, - [2088] = {.lex_state = 85}, + [2088] = {.lex_state = 3}, [2089] = {.lex_state = 85}, [2090] = {.lex_state = 85}, [2091] = {.lex_state = 85}, - [2092] = {.lex_state = 3}, + [2092] = {.lex_state = 85}, [2093] = {.lex_state = 85}, - [2094] = {.lex_state = 85}, + [2094] = {.lex_state = 3}, [2095] = {.lex_state = 85}, [2096] = {.lex_state = 85}, - [2097] = {.lex_state = 85}, + [2097] = {.lex_state = 3}, [2098] = {.lex_state = 85}, [2099] = {.lex_state = 85}, - [2100] = {.lex_state = 3}, + [2100] = {.lex_state = 85}, [2101] = {.lex_state = 85}, - [2102] = {.lex_state = 85}, + [2102] = {.lex_state = 3}, [2103] = {.lex_state = 85}, [2104] = {.lex_state = 85}, [2105] = {.lex_state = 85}, - [2106] = {.lex_state = 85}, - [2107] = {.lex_state = 3}, - [2108] = {(TSStateId)(-1)}, - [2109] = {(TSStateId)(-1)}, + [2106] = {.lex_state = 3}, + [2107] = {.lex_state = 85}, + [2108] = {.lex_state = 3}, + [2109] = {.lex_state = 85}, + [2110] = {.lex_state = 85}, + [2111] = {.lex_state = 85}, + [2112] = {.lex_state = 85}, + [2113] = {.lex_state = 85}, + [2114] = {(TSStateId)(-1)}, + [2115] = {(TSStateId)(-1)}, }; enum { @@ -8197,8 +8226,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_interface_declaration_token1] = ACTIONS(1), [aux_sym_base_clause_token1] = ACTIONS(1), [aux_sym_class_declaration_token1] = ACTIONS(1), - [aux_sym_class_modifier_token1] = ACTIONS(1), - [aux_sym_class_modifier_token2] = ACTIONS(1), + [aux_sym_final_modifier_token1] = ACTIONS(1), + [aux_sym_abstract_modifier_token1] = ACTIONS(1), [aux_sym_class_interface_clause_token1] = ACTIONS(1), [sym_var_modifier] = ACTIONS(1), [aux_sym_use_instead_of_clause_token1] = ACTIONS(1), @@ -8334,10 +8363,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eof] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2104), + [sym_program] = STATE(2110), [sym_text_interpolation] = STATE(1), - [sym_text] = STATE(1738), - [aux_sym_text_repeat1] = STATE(1316), + [sym_text] = STATE(1744), + [aux_sym_text_repeat1] = STATE(1363), [ts_builtin_sym_end] = ACTIONS(7), [sym_php_tag] = ACTIONS(9), [anon_sym_QMARK_GT] = ACTIONS(11), @@ -8347,87 +8376,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2] = { [sym_text_interpolation] = STATE(2), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), [ts_builtin_sym_end] = ACTIONS(15), @@ -8446,1091 +8476,1098 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_trait_declaration_token1] = ACTIONS(47), [aux_sym_interface_declaration_token1] = ACTIONS(50), [aux_sym_class_declaration_token1] = ACTIONS(53), - [aux_sym_class_modifier_token1] = ACTIONS(56), - [aux_sym_class_modifier_token2] = ACTIONS(56), - [aux_sym_visibility_modifier_token1] = ACTIONS(59), - [aux_sym_visibility_modifier_token2] = ACTIONS(59), - [aux_sym_visibility_modifier_token3] = ACTIONS(59), - [aux_sym_arrow_function_token1] = ACTIONS(62), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_array] = ACTIONS(68), - [anon_sym_unset] = ACTIONS(71), - [aux_sym_echo_statement_token1] = ACTIONS(74), - [anon_sym_declare] = ACTIONS(77), - [aux_sym_declare_statement_token1] = ACTIONS(80), - [sym_float] = ACTIONS(82), - [aux_sym_try_statement_token1] = ACTIONS(85), - [aux_sym_goto_statement_token1] = ACTIONS(88), - [aux_sym_continue_statement_token1] = ACTIONS(91), - [aux_sym_break_statement_token1] = ACTIONS(94), - [sym_integer] = ACTIONS(82), - [aux_sym_return_statement_token1] = ACTIONS(97), - [aux_sym_throw_expression_token1] = ACTIONS(100), - [aux_sym_while_statement_token1] = ACTIONS(103), - [aux_sym_while_statement_token2] = ACTIONS(80), - [aux_sym_do_statement_token1] = ACTIONS(106), - [aux_sym_for_statement_token1] = ACTIONS(109), - [aux_sym_for_statement_token2] = ACTIONS(80), - [aux_sym_foreach_statement_token1] = ACTIONS(112), - [aux_sym_foreach_statement_token2] = ACTIONS(80), - [aux_sym_if_statement_token1] = ACTIONS(115), - [aux_sym_if_statement_token2] = ACTIONS(80), - [aux_sym_match_expression_token1] = ACTIONS(118), - [aux_sym_match_default_expression_token1] = ACTIONS(80), - [aux_sym_switch_statement_token1] = ACTIONS(121), - [aux_sym_switch_block_token1] = ACTIONS(80), - [aux_sym_case_statement_token1] = ACTIONS(80), - [anon_sym_AT] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(130), - [anon_sym_clone] = ACTIONS(133), - [anon_sym_print] = ACTIONS(136), - [anon_sym_new] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(142), - [anon_sym_DASH_DASH] = ACTIONS(142), - [sym_shell_command_expression] = ACTIONS(145), - [anon_sym_list] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_self] = ACTIONS(154), - [anon_sym_parent] = ACTIONS(154), - [anon_sym_POUND_LBRACK] = ACTIONS(157), - [sym_string] = ACTIONS(160), - [sym_boolean] = ACTIONS(82), - [sym_null] = ACTIONS(82), - [anon_sym_DOLLAR] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(166), - [aux_sym_include_expression_token1] = ACTIONS(169), - [aux_sym_include_once_expression_token1] = ACTIONS(172), - [aux_sym_require_expression_token1] = ACTIONS(175), - [aux_sym_require_once_expression_token1] = ACTIONS(178), + [aux_sym_final_modifier_token1] = ACTIONS(56), + [aux_sym_abstract_modifier_token1] = ACTIONS(59), + [aux_sym_visibility_modifier_token1] = ACTIONS(62), + [aux_sym_visibility_modifier_token2] = ACTIONS(62), + [aux_sym_visibility_modifier_token3] = ACTIONS(62), + [aux_sym_arrow_function_token1] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(68), + [anon_sym_array] = ACTIONS(71), + [anon_sym_unset] = ACTIONS(74), + [aux_sym_echo_statement_token1] = ACTIONS(77), + [anon_sym_declare] = ACTIONS(80), + [aux_sym_declare_statement_token1] = ACTIONS(83), + [sym_float] = ACTIONS(85), + [aux_sym_try_statement_token1] = ACTIONS(88), + [aux_sym_goto_statement_token1] = ACTIONS(91), + [aux_sym_continue_statement_token1] = ACTIONS(94), + [aux_sym_break_statement_token1] = ACTIONS(97), + [sym_integer] = ACTIONS(85), + [aux_sym_return_statement_token1] = ACTIONS(100), + [aux_sym_throw_expression_token1] = ACTIONS(103), + [aux_sym_while_statement_token1] = ACTIONS(106), + [aux_sym_while_statement_token2] = ACTIONS(83), + [aux_sym_do_statement_token1] = ACTIONS(109), + [aux_sym_for_statement_token1] = ACTIONS(112), + [aux_sym_for_statement_token2] = ACTIONS(83), + [aux_sym_foreach_statement_token1] = ACTIONS(115), + [aux_sym_foreach_statement_token2] = ACTIONS(83), + [aux_sym_if_statement_token1] = ACTIONS(118), + [aux_sym_if_statement_token2] = ACTIONS(83), + [aux_sym_match_expression_token1] = ACTIONS(121), + [aux_sym_match_default_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(124), + [aux_sym_switch_block_token1] = ACTIONS(83), + [aux_sym_case_statement_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_clone] = ACTIONS(136), + [anon_sym_print] = ACTIONS(139), + [anon_sym_new] = ACTIONS(142), + [anon_sym_PLUS_PLUS] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(145), + [sym_shell_command_expression] = ACTIONS(148), + [anon_sym_list] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_self] = ACTIONS(157), + [anon_sym_parent] = ACTIONS(157), + [anon_sym_POUND_LBRACK] = ACTIONS(160), + [sym_string] = ACTIONS(163), + [sym_boolean] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_DOLLAR] = ACTIONS(166), + [anon_sym_yield] = ACTIONS(169), + [aux_sym_include_expression_token1] = ACTIONS(172), + [aux_sym_include_once_expression_token1] = ACTIONS(175), + [aux_sym_require_expression_token1] = ACTIONS(178), + [aux_sym_require_once_expression_token1] = ACTIONS(181), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(160), + [sym_heredoc] = ACTIONS(163), }, [3] = { [sym_text_interpolation] = STATE(3), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(4), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(201), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_match_default_expression_token1] = ACTIONS(251), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [aux_sym_switch_block_token1] = ACTIONS(251), - [aux_sym_case_statement_token1] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(204), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_match_default_expression_token1] = ACTIONS(256), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [aux_sym_switch_block_token1] = ACTIONS(256), + [aux_sym_case_statement_token1] = ACTIONS(256), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [4] = { [sym_text_interpolation] = STATE(4), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(293), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_match_default_expression_token1] = ACTIONS(295), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [aux_sym_switch_block_token1] = ACTIONS(295), - [aux_sym_case_statement_token1] = ACTIONS(295), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(298), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_match_default_expression_token1] = ACTIONS(300), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [aux_sym_switch_block_token1] = ACTIONS(300), + [aux_sym_case_statement_token1] = ACTIONS(300), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [5] = { [sym_text_interpolation] = STATE(5), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(6), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(297), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_match_default_expression_token1] = ACTIONS(299), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [aux_sym_switch_block_token1] = ACTIONS(299), - [aux_sym_case_statement_token1] = ACTIONS(299), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(302), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_match_default_expression_token1] = ACTIONS(304), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [aux_sym_switch_block_token1] = ACTIONS(304), + [aux_sym_case_statement_token1] = ACTIONS(304), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [6] = { [sym_text_interpolation] = STATE(6), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(301), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_match_default_expression_token1] = ACTIONS(303), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [aux_sym_switch_block_token1] = ACTIONS(303), - [aux_sym_case_statement_token1] = ACTIONS(303), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(306), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_match_default_expression_token1] = ACTIONS(308), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [aux_sym_switch_block_token1] = ACTIONS(308), + [aux_sym_case_statement_token1] = ACTIONS(308), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [7] = { [sym_text_interpolation] = STATE(7), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(9), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_if_statement_token2] = ACTIONS(315), - [aux_sym_else_if_clause_token1] = ACTIONS(315), - [aux_sym_else_clause_token1] = ACTIONS(315), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_if_statement_token2] = ACTIONS(320), + [aux_sym_else_if_clause_token1] = ACTIONS(320), + [aux_sym_else_clause_token1] = ACTIONS(320), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [8] = { [sym_text_interpolation] = STATE(8), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(7), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_if_statement_token2] = ACTIONS(317), - [aux_sym_else_if_clause_token1] = ACTIONS(317), - [aux_sym_else_clause_token1] = ACTIONS(317), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_if_statement_token2] = ACTIONS(322), + [aux_sym_else_if_clause_token1] = ACTIONS(322), + [aux_sym_else_clause_token1] = ACTIONS(322), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [9] = { [sym_text_interpolation] = STATE(9), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(9), [aux_sym_attribute_list_repeat2] = STATE(1111), [sym_name] = ACTIONS(17), @@ -9547,1922 +9584,1934 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_trait_declaration_token1] = ACTIONS(47), [aux_sym_interface_declaration_token1] = ACTIONS(50), [aux_sym_class_declaration_token1] = ACTIONS(53), - [aux_sym_class_modifier_token1] = ACTIONS(56), - [aux_sym_class_modifier_token2] = ACTIONS(56), - [aux_sym_visibility_modifier_token1] = ACTIONS(59), - [aux_sym_visibility_modifier_token2] = ACTIONS(59), - [aux_sym_visibility_modifier_token3] = ACTIONS(59), - [aux_sym_arrow_function_token1] = ACTIONS(62), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_array] = ACTIONS(68), - [anon_sym_unset] = ACTIONS(71), - [aux_sym_echo_statement_token1] = ACTIONS(74), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(82), - [aux_sym_try_statement_token1] = ACTIONS(85), - [aux_sym_goto_statement_token1] = ACTIONS(88), - [aux_sym_continue_statement_token1] = ACTIONS(91), - [aux_sym_break_statement_token1] = ACTIONS(94), - [sym_integer] = ACTIONS(82), - [aux_sym_return_statement_token1] = ACTIONS(97), - [aux_sym_throw_expression_token1] = ACTIONS(100), - [aux_sym_while_statement_token1] = ACTIONS(322), - [aux_sym_do_statement_token1] = ACTIONS(106), - [aux_sym_for_statement_token1] = ACTIONS(325), - [aux_sym_foreach_statement_token1] = ACTIONS(328), - [aux_sym_if_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token2] = ACTIONS(80), - [aux_sym_else_if_clause_token1] = ACTIONS(80), - [aux_sym_else_clause_token1] = ACTIONS(80), - [aux_sym_match_expression_token1] = ACTIONS(118), - [aux_sym_switch_statement_token1] = ACTIONS(121), - [anon_sym_AT] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(130), - [anon_sym_clone] = ACTIONS(133), - [anon_sym_print] = ACTIONS(136), - [anon_sym_new] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(142), - [anon_sym_DASH_DASH] = ACTIONS(142), - [sym_shell_command_expression] = ACTIONS(145), - [anon_sym_list] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_self] = ACTIONS(154), - [anon_sym_parent] = ACTIONS(154), - [anon_sym_POUND_LBRACK] = ACTIONS(157), - [sym_string] = ACTIONS(160), - [sym_boolean] = ACTIONS(82), - [sym_null] = ACTIONS(82), - [anon_sym_DOLLAR] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(166), - [aux_sym_include_expression_token1] = ACTIONS(169), - [aux_sym_include_once_expression_token1] = ACTIONS(172), - [aux_sym_require_expression_token1] = ACTIONS(175), - [aux_sym_require_once_expression_token1] = ACTIONS(178), + [aux_sym_final_modifier_token1] = ACTIONS(56), + [aux_sym_abstract_modifier_token1] = ACTIONS(59), + [aux_sym_visibility_modifier_token1] = ACTIONS(62), + [aux_sym_visibility_modifier_token2] = ACTIONS(62), + [aux_sym_visibility_modifier_token3] = ACTIONS(62), + [aux_sym_arrow_function_token1] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(68), + [anon_sym_array] = ACTIONS(71), + [anon_sym_unset] = ACTIONS(74), + [aux_sym_echo_statement_token1] = ACTIONS(77), + [anon_sym_declare] = ACTIONS(324), + [sym_float] = ACTIONS(85), + [aux_sym_try_statement_token1] = ACTIONS(88), + [aux_sym_goto_statement_token1] = ACTIONS(91), + [aux_sym_continue_statement_token1] = ACTIONS(94), + [aux_sym_break_statement_token1] = ACTIONS(97), + [sym_integer] = ACTIONS(85), + [aux_sym_return_statement_token1] = ACTIONS(100), + [aux_sym_throw_expression_token1] = ACTIONS(103), + [aux_sym_while_statement_token1] = ACTIONS(327), + [aux_sym_do_statement_token1] = ACTIONS(109), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(333), + [aux_sym_if_statement_token1] = ACTIONS(336), + [aux_sym_if_statement_token2] = ACTIONS(83), + [aux_sym_else_if_clause_token1] = ACTIONS(83), + [aux_sym_else_clause_token1] = ACTIONS(83), + [aux_sym_match_expression_token1] = ACTIONS(121), + [aux_sym_switch_statement_token1] = ACTIONS(124), + [anon_sym_AT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(130), + [anon_sym_DASH] = ACTIONS(130), + [anon_sym_TILDE] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_clone] = ACTIONS(136), + [anon_sym_print] = ACTIONS(139), + [anon_sym_new] = ACTIONS(142), + [anon_sym_PLUS_PLUS] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(145), + [sym_shell_command_expression] = ACTIONS(148), + [anon_sym_list] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_self] = ACTIONS(157), + [anon_sym_parent] = ACTIONS(157), + [anon_sym_POUND_LBRACK] = ACTIONS(160), + [sym_string] = ACTIONS(163), + [sym_boolean] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_DOLLAR] = ACTIONS(166), + [anon_sym_yield] = ACTIONS(169), + [aux_sym_include_expression_token1] = ACTIONS(172), + [aux_sym_include_once_expression_token1] = ACTIONS(175), + [aux_sym_require_expression_token1] = ACTIONS(178), + [aux_sym_require_once_expression_token1] = ACTIONS(181), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(160), + [sym_heredoc] = ACTIONS(163), }, [10] = { [sym_text_interpolation] = STATE(10), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_while_statement_token2] = ACTIONS(315), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_foreach_statement_token2] = ACTIONS(315), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_if_statement_token2] = ACTIONS(315), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_while_statement_token2] = ACTIONS(320), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_foreach_statement_token2] = ACTIONS(320), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_if_statement_token2] = ACTIONS(320), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [11] = { [sym_text_interpolation] = STATE(11), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(10), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_while_statement_token2] = ACTIONS(317), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_foreach_statement_token2] = ACTIONS(317), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_if_statement_token2] = ACTIONS(317), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_while_statement_token2] = ACTIONS(322), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_foreach_statement_token2] = ACTIONS(322), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_if_statement_token2] = ACTIONS(322), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [12] = { [sym_text_interpolation] = STATE(12), - [sym_empty_statement] = STATE(512), - [sym_function_static_declaration] = STATE(512), - [sym_global_declaration] = STATE(512), - [sym_namespace_definition] = STATE(512), - [sym_namespace_use_declaration] = STATE(512), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(512), - [sym_interface_declaration] = STATE(512), - [sym_class_declaration] = STATE(512), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(512), + [sym_empty_statement] = STATE(511), + [sym_function_static_declaration] = STATE(511), + [sym_global_declaration] = STATE(511), + [sym_namespace_definition] = STATE(511), + [sym_namespace_use_declaration] = STATE(511), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(511), + [sym_interface_declaration] = STATE(511), + [sym_class_declaration] = STATE(511), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(511), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(512), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(512), - [sym_unset_statement] = STATE(512), - [sym_declare_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_foreach_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_colon_block] = STATE(2054), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(512), - [sym_compound_statement] = STATE(512), - [sym_named_label_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(511), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(511), + [sym_unset_statement] = STATE(511), + [sym_declare_statement] = STATE(511), + [sym_try_statement] = STATE(511), + [sym_goto_statement] = STATE(511), + [sym_continue_statement] = STATE(511), + [sym_break_statement] = STATE(511), + [sym_return_statement] = STATE(511), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(511), + [sym_do_statement] = STATE(511), + [sym_for_statement] = STATE(511), + [sym_foreach_statement] = STATE(511), + [sym_if_statement] = STATE(511), + [sym_colon_block] = STATE(1948), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(511), + [sym_compound_statement] = STATE(511), + [sym_named_label_statement] = STATE(511), + [sym_expression_statement] = STATE(511), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(334), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(339), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(338), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(343), + [sym_heredoc] = ACTIONS(284), }, [13] = { [sym_text_interpolation] = STATE(13), - [sym_empty_statement] = STATE(512), - [sym_function_static_declaration] = STATE(512), - [sym_global_declaration] = STATE(512), - [sym_namespace_definition] = STATE(512), - [sym_namespace_use_declaration] = STATE(512), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(512), - [sym_interface_declaration] = STATE(512), - [sym_class_declaration] = STATE(512), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(512), + [sym_empty_statement] = STATE(511), + [sym_function_static_declaration] = STATE(511), + [sym_global_declaration] = STATE(511), + [sym_namespace_definition] = STATE(511), + [sym_namespace_use_declaration] = STATE(511), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(511), + [sym_interface_declaration] = STATE(511), + [sym_class_declaration] = STATE(511), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(511), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(512), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(512), - [sym_unset_statement] = STATE(512), - [sym_declare_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_foreach_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_colon_block] = STATE(2054), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(512), - [sym_compound_statement] = STATE(512), - [sym_named_label_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(511), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(511), + [sym_unset_statement] = STATE(511), + [sym_declare_statement] = STATE(511), + [sym_try_statement] = STATE(511), + [sym_goto_statement] = STATE(511), + [sym_continue_statement] = STATE(511), + [sym_break_statement] = STATE(511), + [sym_return_statement] = STATE(511), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(511), + [sym_do_statement] = STATE(511), + [sym_for_statement] = STATE(511), + [sym_foreach_statement] = STATE(511), + [sym_if_statement] = STATE(511), + [sym_colon_block] = STATE(1948), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(511), + [sym_compound_statement] = STATE(511), + [sym_named_label_statement] = STATE(511), + [sym_expression_statement] = STATE(511), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(334), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(339), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(338), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(343), + [sym_heredoc] = ACTIONS(284), }, [14] = { [sym_text_interpolation] = STATE(14), - [sym_empty_statement] = STATE(493), - [sym_function_static_declaration] = STATE(493), - [sym_global_declaration] = STATE(493), - [sym_namespace_definition] = STATE(493), - [sym_namespace_use_declaration] = STATE(493), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(493), - [sym_interface_declaration] = STATE(493), - [sym_class_declaration] = STATE(493), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(493), + [sym_empty_statement] = STATE(494), + [sym_function_static_declaration] = STATE(494), + [sym_global_declaration] = STATE(494), + [sym_namespace_definition] = STATE(494), + [sym_namespace_use_declaration] = STATE(494), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(494), + [sym_interface_declaration] = STATE(494), + [sym_class_declaration] = STATE(494), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(494), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(493), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(493), - [sym_unset_statement] = STATE(493), - [sym_declare_statement] = STATE(493), - [sym_try_statement] = STATE(493), - [sym_goto_statement] = STATE(493), - [sym_continue_statement] = STATE(493), - [sym_break_statement] = STATE(493), - [sym_return_statement] = STATE(493), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(493), - [sym_do_statement] = STATE(493), - [sym_for_statement] = STATE(493), - [sym_foreach_statement] = STATE(493), - [sym_if_statement] = STATE(493), - [sym_colon_block] = STATE(2032), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(493), - [sym_compound_statement] = STATE(493), - [sym_named_label_statement] = STATE(493), - [sym_expression_statement] = STATE(493), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(494), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(494), + [sym_unset_statement] = STATE(494), + [sym_declare_statement] = STATE(494), + [sym_try_statement] = STATE(494), + [sym_goto_statement] = STATE(494), + [sym_continue_statement] = STATE(494), + [sym_break_statement] = STATE(494), + [sym_return_statement] = STATE(494), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(494), + [sym_do_statement] = STATE(494), + [sym_for_statement] = STATE(494), + [sym_foreach_statement] = STATE(494), + [sym_if_statement] = STATE(494), + [sym_colon_block] = STATE(1999), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(494), + [sym_compound_statement] = STATE(494), + [sym_named_label_statement] = STATE(494), + [sym_expression_statement] = STATE(494), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(340), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(345), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(342), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(347), + [sym_heredoc] = ACTIONS(284), }, [15] = { [sym_text_interpolation] = STATE(15), - [sym_empty_statement] = STATE(1590), - [sym_function_static_declaration] = STATE(1590), - [sym_global_declaration] = STATE(1590), - [sym_namespace_definition] = STATE(1590), - [sym_namespace_use_declaration] = STATE(1590), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1590), - [sym_interface_declaration] = STATE(1590), - [sym_class_declaration] = STATE(1590), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1590), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1590), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1590), - [sym_unset_statement] = STATE(1590), - [sym_declare_statement] = STATE(1590), - [sym_try_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1590), - [sym_do_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_foreach_statement] = STATE(1590), - [sym_if_statement] = STATE(1590), - [sym_colon_block] = STATE(2047), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1590), - [sym_compound_statement] = STATE(1590), - [sym_named_label_statement] = STATE(1590), - [sym_expression_statement] = STATE(1590), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1669), + [sym_function_static_declaration] = STATE(1669), + [sym_global_declaration] = STATE(1669), + [sym_namespace_definition] = STATE(1669), + [sym_namespace_use_declaration] = STATE(1669), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1669), + [sym_interface_declaration] = STATE(1669), + [sym_class_declaration] = STATE(1669), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1669), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1669), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1669), + [sym_unset_statement] = STATE(1669), + [sym_declare_statement] = STATE(1669), + [sym_try_statement] = STATE(1669), + [sym_goto_statement] = STATE(1669), + [sym_continue_statement] = STATE(1669), + [sym_break_statement] = STATE(1669), + [sym_return_statement] = STATE(1669), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1669), + [sym_do_statement] = STATE(1669), + [sym_for_statement] = STATE(1669), + [sym_foreach_statement] = STATE(1669), + [sym_if_statement] = STATE(1669), + [sym_colon_block] = STATE(2046), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1669), + [sym_compound_statement] = STATE(1669), + [sym_named_label_statement] = STATE(1669), + [sym_expression_statement] = STATE(1669), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(346), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(351), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(394), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(399), + [sym_heredoc] = ACTIONS(284), }, [16] = { [sym_text_interpolation] = STATE(16), - [sym_empty_statement] = STATE(1563), - [sym_function_static_declaration] = STATE(1563), - [sym_global_declaration] = STATE(1563), - [sym_namespace_definition] = STATE(1563), - [sym_namespace_use_declaration] = STATE(1563), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1563), - [sym_interface_declaration] = STATE(1563), - [sym_class_declaration] = STATE(1563), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1563), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1563), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1563), - [sym_unset_statement] = STATE(1563), - [sym_declare_statement] = STATE(1563), - [sym_try_statement] = STATE(1563), - [sym_goto_statement] = STATE(1563), - [sym_continue_statement] = STATE(1563), - [sym_break_statement] = STATE(1563), - [sym_return_statement] = STATE(1563), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1563), - [sym_do_statement] = STATE(1563), - [sym_for_statement] = STATE(1563), - [sym_foreach_statement] = STATE(1563), - [sym_if_statement] = STATE(1563), - [sym_colon_block] = STATE(1943), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1563), - [sym_compound_statement] = STATE(1563), - [sym_named_label_statement] = STATE(1563), - [sym_expression_statement] = STATE(1563), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1604), + [sym_function_static_declaration] = STATE(1604), + [sym_global_declaration] = STATE(1604), + [sym_namespace_definition] = STATE(1604), + [sym_namespace_use_declaration] = STATE(1604), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1604), + [sym_interface_declaration] = STATE(1604), + [sym_class_declaration] = STATE(1604), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1604), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1604), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1604), + [sym_unset_statement] = STATE(1604), + [sym_declare_statement] = STATE(1604), + [sym_try_statement] = STATE(1604), + [sym_goto_statement] = STATE(1604), + [sym_continue_statement] = STATE(1604), + [sym_break_statement] = STATE(1604), + [sym_return_statement] = STATE(1604), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1604), + [sym_do_statement] = STATE(1604), + [sym_for_statement] = STATE(1604), + [sym_foreach_statement] = STATE(1604), + [sym_if_statement] = STATE(1604), + [sym_colon_block] = STATE(2049), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1604), + [sym_compound_statement] = STATE(1604), + [sym_named_label_statement] = STATE(1604), + [sym_expression_statement] = STATE(1604), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(396), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(401), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(398), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(403), + [sym_heredoc] = ACTIONS(284), }, [17] = { [sym_text_interpolation] = STATE(17), - [sym_empty_statement] = STATE(493), - [sym_function_static_declaration] = STATE(493), - [sym_global_declaration] = STATE(493), - [sym_namespace_definition] = STATE(493), - [sym_namespace_use_declaration] = STATE(493), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(493), - [sym_interface_declaration] = STATE(493), - [sym_class_declaration] = STATE(493), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(493), + [sym_empty_statement] = STATE(494), + [sym_function_static_declaration] = STATE(494), + [sym_global_declaration] = STATE(494), + [sym_namespace_definition] = STATE(494), + [sym_namespace_use_declaration] = STATE(494), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(494), + [sym_interface_declaration] = STATE(494), + [sym_class_declaration] = STATE(494), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(494), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(493), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(493), - [sym_unset_statement] = STATE(493), - [sym_declare_statement] = STATE(493), - [sym_try_statement] = STATE(493), - [sym_goto_statement] = STATE(493), - [sym_continue_statement] = STATE(493), - [sym_break_statement] = STATE(493), - [sym_return_statement] = STATE(493), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(493), - [sym_do_statement] = STATE(493), - [sym_for_statement] = STATE(493), - [sym_foreach_statement] = STATE(493), - [sym_if_statement] = STATE(493), - [sym_colon_block] = STATE(2032), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(493), - [sym_compound_statement] = STATE(493), - [sym_named_label_statement] = STATE(493), - [sym_expression_statement] = STATE(493), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(494), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(494), + [sym_unset_statement] = STATE(494), + [sym_declare_statement] = STATE(494), + [sym_try_statement] = STATE(494), + [sym_goto_statement] = STATE(494), + [sym_continue_statement] = STATE(494), + [sym_break_statement] = STATE(494), + [sym_return_statement] = STATE(494), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(494), + [sym_do_statement] = STATE(494), + [sym_for_statement] = STATE(494), + [sym_foreach_statement] = STATE(494), + [sym_if_statement] = STATE(494), + [sym_colon_block] = STATE(1999), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(494), + [sym_compound_statement] = STATE(494), + [sym_named_label_statement] = STATE(494), + [sym_expression_statement] = STATE(494), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(340), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(345), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(342), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(347), + [sym_heredoc] = ACTIONS(284), }, [18] = { [sym_text_interpolation] = STATE(18), - [sym_empty_statement] = STATE(1590), - [sym_function_static_declaration] = STATE(1590), - [sym_global_declaration] = STATE(1590), - [sym_namespace_definition] = STATE(1590), - [sym_namespace_use_declaration] = STATE(1590), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1590), - [sym_interface_declaration] = STATE(1590), - [sym_class_declaration] = STATE(1590), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1590), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1590), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1590), - [sym_unset_statement] = STATE(1590), - [sym_declare_statement] = STATE(1590), - [sym_try_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1590), - [sym_do_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_foreach_statement] = STATE(1590), - [sym_if_statement] = STATE(1590), - [sym_colon_block] = STATE(2047), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1590), - [sym_compound_statement] = STATE(1590), - [sym_named_label_statement] = STATE(1590), - [sym_expression_statement] = STATE(1590), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1669), + [sym_function_static_declaration] = STATE(1669), + [sym_global_declaration] = STATE(1669), + [sym_namespace_definition] = STATE(1669), + [sym_namespace_use_declaration] = STATE(1669), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1669), + [sym_interface_declaration] = STATE(1669), + [sym_class_declaration] = STATE(1669), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1669), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1669), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1669), + [sym_unset_statement] = STATE(1669), + [sym_declare_statement] = STATE(1669), + [sym_try_statement] = STATE(1669), + [sym_goto_statement] = STATE(1669), + [sym_continue_statement] = STATE(1669), + [sym_break_statement] = STATE(1669), + [sym_return_statement] = STATE(1669), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1669), + [sym_do_statement] = STATE(1669), + [sym_for_statement] = STATE(1669), + [sym_foreach_statement] = STATE(1669), + [sym_if_statement] = STATE(1669), + [sym_colon_block] = STATE(2046), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1669), + [sym_compound_statement] = STATE(1669), + [sym_named_label_statement] = STATE(1669), + [sym_expression_statement] = STATE(1669), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(346), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(351), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(394), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(399), + [sym_heredoc] = ACTIONS(284), }, [19] = { [sym_text_interpolation] = STATE(19), - [sym_empty_statement] = STATE(1563), - [sym_function_static_declaration] = STATE(1563), - [sym_global_declaration] = STATE(1563), - [sym_namespace_definition] = STATE(1563), - [sym_namespace_use_declaration] = STATE(1563), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1563), - [sym_interface_declaration] = STATE(1563), - [sym_class_declaration] = STATE(1563), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1563), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1563), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1563), - [sym_unset_statement] = STATE(1563), - [sym_declare_statement] = STATE(1563), - [sym_try_statement] = STATE(1563), - [sym_goto_statement] = STATE(1563), - [sym_continue_statement] = STATE(1563), - [sym_break_statement] = STATE(1563), - [sym_return_statement] = STATE(1563), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1563), - [sym_do_statement] = STATE(1563), - [sym_for_statement] = STATE(1563), - [sym_foreach_statement] = STATE(1563), - [sym_if_statement] = STATE(1563), - [sym_colon_block] = STATE(1943), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1563), - [sym_compound_statement] = STATE(1563), - [sym_named_label_statement] = STATE(1563), - [sym_expression_statement] = STATE(1563), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1604), + [sym_function_static_declaration] = STATE(1604), + [sym_global_declaration] = STATE(1604), + [sym_namespace_definition] = STATE(1604), + [sym_namespace_use_declaration] = STATE(1604), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1604), + [sym_interface_declaration] = STATE(1604), + [sym_class_declaration] = STATE(1604), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1604), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1604), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1604), + [sym_unset_statement] = STATE(1604), + [sym_declare_statement] = STATE(1604), + [sym_try_statement] = STATE(1604), + [sym_goto_statement] = STATE(1604), + [sym_continue_statement] = STATE(1604), + [sym_break_statement] = STATE(1604), + [sym_return_statement] = STATE(1604), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1604), + [sym_do_statement] = STATE(1604), + [sym_for_statement] = STATE(1604), + [sym_foreach_statement] = STATE(1604), + [sym_if_statement] = STATE(1604), + [sym_colon_block] = STATE(2049), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1604), + [sym_compound_statement] = STATE(1604), + [sym_named_label_statement] = STATE(1604), + [sym_expression_statement] = STATE(1604), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(396), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(401), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(398), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(403), + [sym_heredoc] = ACTIONS(284), }, [20] = { [sym_text_interpolation] = STATE(20), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [aux_sym_declare_statement_token1] = ACTIONS(415), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [21] = { [sym_text_interpolation] = STATE(21), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(64), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(412), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(417), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [22] = { [sym_text_interpolation] = STATE(22), @@ -11471,20 +11520,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_declaration] = STATE(507), [sym_namespace_definition] = STATE(507), [sym_namespace_use_declaration] = STATE(507), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), [sym_trait_declaration] = STATE(507), [sym_interface_declaration] = STATE(507), [sym_class_declaration] = STATE(507), - [sym_class_modifier] = STATE(1986), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), [sym_const_declaration] = STATE(507), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), [sym_function_definition] = STATE(507), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), [sym_echo_statement] = STATE(507), [sym_unset_statement] = STATE(507), [sym_declare_statement] = STATE(507), @@ -11493,1054 +11543,1060 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_continue_statement] = STATE(507), [sym_break_statement] = STATE(507), [sym_return_statement] = STATE(507), - [sym_throw_expression] = STATE(936), + [sym_throw_expression] = STATE(932), [sym_while_statement] = STATE(507), [sym_do_statement] = STATE(507), [sym_for_statement] = STATE(507), [sym_foreach_statement] = STATE(507), [sym_if_statement] = STATE(507), - [sym_match_expression] = STATE(955), + [sym_match_expression] = STATE(898), [sym_switch_statement] = STATE(507), [sym_compound_statement] = STATE(507), [sym_named_label_statement] = STATE(507), [sym_expression_statement] = STATE(507), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(414), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(416), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(419), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(421), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(418), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(423), + [sym_heredoc] = ACTIONS(284), }, [23] = { [sym_text_interpolation] = STATE(23), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(78), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(420), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(425), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [24] = { [sym_text_interpolation] = STATE(24), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(422), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [25] = { [sym_text_interpolation] = STATE(25), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(27), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(422), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [26] = { [sym_text_interpolation] = STATE(26), - [sym_empty_statement] = STATE(514), - [sym_function_static_declaration] = STATE(514), - [sym_global_declaration] = STATE(514), - [sym_namespace_definition] = STATE(514), - [sym_namespace_use_declaration] = STATE(514), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(514), - [sym_interface_declaration] = STATE(514), - [sym_class_declaration] = STATE(514), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(514), + [sym_empty_statement] = STATE(513), + [sym_function_static_declaration] = STATE(513), + [sym_global_declaration] = STATE(513), + [sym_namespace_definition] = STATE(513), + [sym_namespace_use_declaration] = STATE(513), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(513), + [sym_interface_declaration] = STATE(513), + [sym_class_declaration] = STATE(513), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(513), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(514), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(514), - [sym_unset_statement] = STATE(514), - [sym_declare_statement] = STATE(514), - [sym_try_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_foreach_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(514), - [sym_compound_statement] = STATE(514), - [sym_named_label_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(513), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(513), + [sym_unset_statement] = STATE(513), + [sym_declare_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_foreach_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(513), + [sym_compound_statement] = STATE(513), + [sym_named_label_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(426), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(429), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(431), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(428), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(433), + [sym_heredoc] = ACTIONS(284), }, [27] = { [sym_text_interpolation] = STATE(27), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(430), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [28] = { [sym_text_interpolation] = STATE(28), - [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(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(502), - [sym_interface_declaration] = STATE(502), - [sym_class_declaration] = STATE(502), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(502), + [sym_empty_statement] = STATE(501), + [sym_function_static_declaration] = STATE(501), + [sym_global_declaration] = STATE(501), + [sym_namespace_definition] = STATE(501), + [sym_namespace_use_declaration] = STATE(501), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(501), + [sym_interface_declaration] = STATE(501), + [sym_class_declaration] = STATE(501), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(501), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(502), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [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(936), - [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_colon_block] = STATE(2050), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(502), - [sym_compound_statement] = STATE(502), - [sym_named_label_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(501), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(501), + [sym_unset_statement] = STATE(501), + [sym_declare_statement] = STATE(501), + [sym_try_statement] = STATE(501), + [sym_goto_statement] = STATE(501), + [sym_continue_statement] = STATE(501), + [sym_break_statement] = STATE(501), + [sym_return_statement] = STATE(501), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(501), + [sym_do_statement] = STATE(501), + [sym_for_statement] = STATE(501), + [sym_foreach_statement] = STATE(501), + [sym_if_statement] = STATE(501), + [sym_colon_block] = STATE(1952), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(501), + [sym_compound_statement] = STATE(501), + [sym_named_label_statement] = STATE(501), + [sym_expression_statement] = STATE(501), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [29] = { [sym_text_interpolation] = STATE(29), @@ -12549,20 +12605,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_declaration] = STATE(408), [sym_namespace_definition] = STATE(408), [sym_namespace_use_declaration] = STATE(408), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), [sym_trait_declaration] = STATE(408), [sym_interface_declaration] = STATE(408), [sym_class_declaration] = STATE(408), - [sym_class_modifier] = STATE(1986), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), [sym_const_declaration] = STATE(408), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), [sym_function_definition] = STATE(408), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), [sym_echo_statement] = STATE(408), [sym_unset_statement] = STATE(408), [sym_declare_statement] = STATE(408), @@ -12571,3364 +12628,3385 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_continue_statement] = STATE(408), [sym_break_statement] = STATE(408), [sym_return_statement] = STATE(408), - [sym_throw_expression] = STATE(936), + [sym_throw_expression] = STATE(932), [sym_while_statement] = STATE(408), [sym_do_statement] = STATE(408), [sym_for_statement] = STATE(408), [sym_foreach_statement] = STATE(408), [sym_if_statement] = STATE(408), - [sym_colon_block] = STATE(1275), - [sym_match_expression] = STATE(955), + [sym_colon_block] = STATE(1297), + [sym_match_expression] = STATE(898), [sym_switch_statement] = STATE(408), [sym_compound_statement] = STATE(408), [sym_named_label_statement] = STATE(408), [sym_expression_statement] = STATE(408), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(432), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(437), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [30] = { [sym_text_interpolation] = STATE(30), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(31), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(430), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [31] = { [sym_text_interpolation] = STATE(31), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(434), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(439), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [32] = { [sym_text_interpolation] = STATE(32), - [sym_empty_statement] = STATE(1621), - [sym_function_static_declaration] = STATE(1621), - [sym_global_declaration] = STATE(1621), - [sym_namespace_definition] = STATE(1621), - [sym_namespace_use_declaration] = STATE(1621), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1621), - [sym_interface_declaration] = STATE(1621), - [sym_class_declaration] = STATE(1621), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1621), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1621), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1621), - [sym_unset_statement] = STATE(1621), - [sym_declare_statement] = STATE(1621), - [sym_try_statement] = STATE(1621), - [sym_goto_statement] = STATE(1621), - [sym_continue_statement] = STATE(1621), - [sym_break_statement] = STATE(1621), - [sym_return_statement] = STATE(1621), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1621), - [sym_do_statement] = STATE(1621), - [sym_for_statement] = STATE(1621), - [sym_foreach_statement] = STATE(1621), - [sym_if_statement] = STATE(1621), - [sym_colon_block] = STATE(2092), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1621), - [sym_compound_statement] = STATE(1621), - [sym_named_label_statement] = STATE(1621), - [sym_expression_statement] = STATE(1621), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1645), + [sym_function_static_declaration] = STATE(1645), + [sym_global_declaration] = STATE(1645), + [sym_namespace_definition] = STATE(1645), + [sym_namespace_use_declaration] = STATE(1645), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1645), + [sym_interface_declaration] = STATE(1645), + [sym_class_declaration] = STATE(1645), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1645), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1645), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1645), + [sym_unset_statement] = STATE(1645), + [sym_declare_statement] = STATE(1645), + [sym_try_statement] = STATE(1645), + [sym_goto_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1645), + [sym_do_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_foreach_statement] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_colon_block] = STATE(2102), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1645), + [sym_compound_statement] = STATE(1645), + [sym_named_label_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(436), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [33] = { [sym_text_interpolation] = STATE(33), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(438), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(443), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [34] = { [sym_text_interpolation] = STATE(34), - [sym_empty_statement] = STATE(1621), - [sym_function_static_declaration] = STATE(1621), - [sym_global_declaration] = STATE(1621), - [sym_namespace_definition] = STATE(1621), - [sym_namespace_use_declaration] = STATE(1621), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1621), - [sym_interface_declaration] = STATE(1621), - [sym_class_declaration] = STATE(1621), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1621), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1621), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1621), - [sym_unset_statement] = STATE(1621), - [sym_declare_statement] = STATE(1621), - [sym_try_statement] = STATE(1621), - [sym_goto_statement] = STATE(1621), - [sym_continue_statement] = STATE(1621), - [sym_break_statement] = STATE(1621), - [sym_return_statement] = STATE(1621), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1621), - [sym_do_statement] = STATE(1621), - [sym_for_statement] = STATE(1621), - [sym_foreach_statement] = STATE(1621), - [sym_if_statement] = STATE(1621), - [sym_colon_block] = STATE(2092), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1621), - [sym_compound_statement] = STATE(1621), - [sym_named_label_statement] = STATE(1621), - [sym_expression_statement] = STATE(1621), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(440), + [sym_function_static_declaration] = STATE(440), + [sym_global_declaration] = STATE(440), + [sym_namespace_definition] = STATE(440), + [sym_namespace_use_declaration] = STATE(440), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(440), + [sym_interface_declaration] = STATE(440), + [sym_class_declaration] = STATE(440), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(440), + [sym__const_declaration] = STATE(474), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(440), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(440), + [sym_unset_statement] = STATE(440), + [sym_declare_statement] = STATE(440), + [sym_try_statement] = STATE(440), + [sym_goto_statement] = STATE(440), + [sym_continue_statement] = STATE(440), + [sym_break_statement] = STATE(440), + [sym_return_statement] = STATE(440), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(440), + [sym_do_statement] = STATE(440), + [sym_for_statement] = STATE(440), + [sym_foreach_statement] = STATE(440), + [sym_if_statement] = STATE(440), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(440), + [sym_compound_statement] = STATE(440), + [sym_named_label_statement] = STATE(440), + [sym_expression_statement] = STATE(440), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(436), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(445), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(447), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(449), + [sym_heredoc] = ACTIONS(284), }, [35] = { [sym_text_interpolation] = STATE(35), - [sym_empty_statement] = STATE(444), - [sym_function_static_declaration] = STATE(444), - [sym_global_declaration] = STATE(444), - [sym_namespace_definition] = STATE(444), - [sym_namespace_use_declaration] = STATE(444), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(444), - [sym_interface_declaration] = STATE(444), - [sym_class_declaration] = STATE(444), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(444), - [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(444), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(444), - [sym_unset_statement] = STATE(444), - [sym_declare_statement] = STATE(444), - [sym_try_statement] = STATE(444), - [sym_goto_statement] = STATE(444), - [sym_continue_statement] = STATE(444), - [sym_break_statement] = STATE(444), - [sym_return_statement] = STATE(444), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(444), - [sym_do_statement] = STATE(444), - [sym_for_statement] = STATE(444), - [sym_foreach_statement] = STATE(444), - [sym_if_statement] = STATE(444), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(444), - [sym_compound_statement] = STATE(444), - [sym_named_label_statement] = STATE(444), - [sym_expression_statement] = STATE(444), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1645), + [sym_function_static_declaration] = STATE(1645), + [sym_global_declaration] = STATE(1645), + [sym_namespace_definition] = STATE(1645), + [sym_namespace_use_declaration] = STATE(1645), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1645), + [sym_interface_declaration] = STATE(1645), + [sym_class_declaration] = STATE(1645), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1645), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1645), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1645), + [sym_unset_statement] = STATE(1645), + [sym_declare_statement] = STATE(1645), + [sym_try_statement] = STATE(1645), + [sym_goto_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1645), + [sym_do_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_foreach_statement] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_colon_block] = STATE(2102), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1645), + [sym_compound_statement] = STATE(1645), + [sym_named_label_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(440), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(442), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(444), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [36] = { [sym_text_interpolation] = STATE(36), - [sym_empty_statement] = STATE(1302), - [sym_function_static_declaration] = STATE(1302), - [sym_global_declaration] = STATE(1302), - [sym_namespace_definition] = STATE(1302), - [sym_namespace_use_declaration] = STATE(1302), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_class_declaration] = STATE(1302), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1302), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1302), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1302), - [sym_unset_statement] = STATE(1302), - [sym_declare_statement] = STATE(1302), - [sym_try_statement] = STATE(1302), - [sym_goto_statement] = STATE(1302), - [sym_continue_statement] = STATE(1302), - [sym_break_statement] = STATE(1302), - [sym_return_statement] = STATE(1302), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1302), - [sym_do_statement] = STATE(1302), - [sym_for_statement] = STATE(1302), - [sym_foreach_statement] = STATE(1302), - [sym_if_statement] = STATE(1302), - [sym_colon_block] = STATE(1268), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1302), - [sym_compound_statement] = STATE(1302), - [sym_named_label_statement] = STATE(1302), - [sym_expression_statement] = STATE(1302), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1269), + [sym_function_static_declaration] = STATE(1269), + [sym_global_declaration] = STATE(1269), + [sym_namespace_definition] = STATE(1269), + [sym_namespace_use_declaration] = STATE(1269), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1269), + [sym_interface_declaration] = STATE(1269), + [sym_class_declaration] = STATE(1269), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1269), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1269), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1269), + [sym_unset_statement] = STATE(1269), + [sym_declare_statement] = STATE(1269), + [sym_try_statement] = STATE(1269), + [sym_goto_statement] = STATE(1269), + [sym_continue_statement] = STATE(1269), + [sym_break_statement] = STATE(1269), + [sym_return_statement] = STATE(1269), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1269), + [sym_do_statement] = STATE(1269), + [sym_for_statement] = STATE(1269), + [sym_foreach_statement] = STATE(1269), + [sym_if_statement] = STATE(1269), + [sym_colon_block] = STATE(1283), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1269), + [sym_compound_statement] = STATE(1269), + [sym_named_label_statement] = STATE(1269), + [sym_expression_statement] = STATE(1269), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(436), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(432), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(437), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [37] = { [sym_text_interpolation] = STATE(37), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(33), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(446), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(451), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [38] = { [sym_text_interpolation] = STATE(38), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(446), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(451), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [39] = { [sym_text_interpolation] = STATE(39), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(41), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(40), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(448), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(453), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [40] = { [sym_text_interpolation] = STATE(40), - [sym_empty_statement] = STATE(514), - [sym_function_static_declaration] = STATE(514), - [sym_global_declaration] = STATE(514), - [sym_namespace_definition] = STATE(514), - [sym_namespace_use_declaration] = STATE(514), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(514), - [sym_interface_declaration] = STATE(514), - [sym_class_declaration] = STATE(514), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(514), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(514), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(514), - [sym_unset_statement] = STATE(514), - [sym_declare_statement] = STATE(514), - [sym_try_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_foreach_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(514), - [sym_compound_statement] = STATE(514), - [sym_named_label_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(426), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(455), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(428), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [41] = { [sym_text_interpolation] = STATE(41), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(513), + [sym_function_static_declaration] = STATE(513), + [sym_global_declaration] = STATE(513), + [sym_namespace_definition] = STATE(513), + [sym_namespace_use_declaration] = STATE(513), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(513), + [sym_interface_declaration] = STATE(513), + [sym_class_declaration] = STATE(513), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(513), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(513), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(513), + [sym_unset_statement] = STATE(513), + [sym_declare_statement] = STATE(513), + [sym_try_statement] = STATE(513), + [sym_goto_statement] = STATE(513), + [sym_continue_statement] = STATE(513), + [sym_break_statement] = STATE(513), + [sym_return_statement] = STATE(513), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(513), + [sym_do_statement] = STATE(513), + [sym_for_statement] = STATE(513), + [sym_foreach_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(513), + [sym_compound_statement] = STATE(513), + [sym_named_label_statement] = STATE(513), + [sym_expression_statement] = STATE(513), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(2), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(450), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(429), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(431), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(433), + [sym_heredoc] = ACTIONS(284), }, [42] = { [sym_text_interpolation] = STATE(42), - [sym_empty_statement] = STATE(409), - [sym_function_static_declaration] = STATE(409), - [sym_global_declaration] = STATE(409), - [sym_namespace_definition] = STATE(409), - [sym_namespace_use_declaration] = STATE(409), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(409), - [sym_interface_declaration] = STATE(409), - [sym_class_declaration] = STATE(409), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(409), + [sym_empty_statement] = STATE(407), + [sym_function_static_declaration] = STATE(407), + [sym_global_declaration] = STATE(407), + [sym_namespace_definition] = STATE(407), + [sym_namespace_use_declaration] = STATE(407), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(407), + [sym_interface_declaration] = STATE(407), + [sym_class_declaration] = STATE(407), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(407), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(409), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(409), - [sym_unset_statement] = STATE(409), - [sym_declare_statement] = STATE(409), - [sym_try_statement] = STATE(409), - [sym_goto_statement] = STATE(409), - [sym_continue_statement] = STATE(409), - [sym_break_statement] = STATE(409), - [sym_return_statement] = STATE(409), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(409), - [sym_do_statement] = STATE(409), - [sym_for_statement] = STATE(409), - [sym_foreach_statement] = STATE(409), - [sym_if_statement] = STATE(409), - [sym_colon_block] = STATE(1275), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(409), - [sym_compound_statement] = STATE(409), - [sym_named_label_statement] = STATE(409), - [sym_expression_statement] = STATE(409), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(407), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(407), + [sym_unset_statement] = STATE(407), + [sym_declare_statement] = STATE(407), + [sym_try_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_foreach_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_colon_block] = STATE(1297), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(407), + [sym_compound_statement] = STATE(407), + [sym_named_label_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(432), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(437), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [43] = { [sym_text_interpolation] = STATE(43), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(38), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(452), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(457), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [44] = { [sym_text_interpolation] = STATE(44), - [sym_empty_statement] = STATE(1625), - [sym_function_static_declaration] = STATE(1625), - [sym_global_declaration] = STATE(1625), - [sym_namespace_definition] = STATE(1625), - [sym_namespace_use_declaration] = STATE(1625), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1625), - [sym_interface_declaration] = STATE(1625), - [sym_class_declaration] = STATE(1625), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1625), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1625), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1625), - [sym_unset_statement] = STATE(1625), - [sym_declare_statement] = STATE(1625), - [sym_try_statement] = STATE(1625), - [sym_goto_statement] = STATE(1625), - [sym_continue_statement] = STATE(1625), - [sym_break_statement] = STATE(1625), - [sym_return_statement] = STATE(1625), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1625), - [sym_do_statement] = STATE(1625), - [sym_for_statement] = STATE(1625), - [sym_foreach_statement] = STATE(1625), - [sym_if_statement] = STATE(1625), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1625), - [sym_compound_statement] = STATE(1625), - [sym_named_label_statement] = STATE(1625), - [sym_expression_statement] = STATE(1625), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1521), + [sym_function_static_declaration] = STATE(1521), + [sym_global_declaration] = STATE(1521), + [sym_namespace_definition] = STATE(1521), + [sym_namespace_use_declaration] = STATE(1521), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1521), + [sym_interface_declaration] = STATE(1521), + [sym_class_declaration] = STATE(1521), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1521), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1521), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1521), + [sym_unset_statement] = STATE(1521), + [sym_declare_statement] = STATE(1521), + [sym_try_statement] = STATE(1521), + [sym_goto_statement] = STATE(1521), + [sym_continue_statement] = STATE(1521), + [sym_break_statement] = STATE(1521), + [sym_return_statement] = STATE(1521), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1521), + [sym_do_statement] = STATE(1521), + [sym_for_statement] = STATE(1521), + [sym_foreach_statement] = STATE(1521), + [sym_if_statement] = STATE(1521), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1521), + [sym_compound_statement] = STATE(1521), + [sym_named_label_statement] = STATE(1521), + [sym_expression_statement] = STATE(1521), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(454), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(456), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(461), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(458), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(463), + [sym_heredoc] = ACTIONS(284), }, [45] = { [sym_text_interpolation] = STATE(45), - [sym_empty_statement] = STATE(1532), - [sym_function_static_declaration] = STATE(1532), - [sym_global_declaration] = STATE(1532), - [sym_namespace_definition] = STATE(1532), - [sym_namespace_use_declaration] = STATE(1532), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1532), - [sym_interface_declaration] = STATE(1532), - [sym_class_declaration] = STATE(1532), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1532), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1532), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1532), - [sym_unset_statement] = STATE(1532), - [sym_declare_statement] = STATE(1532), - [sym_try_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1532), - [sym_do_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_foreach_statement] = STATE(1532), - [sym_if_statement] = STATE(1532), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1532), - [sym_compound_statement] = STATE(1532), - [sym_named_label_statement] = STATE(1532), - [sym_expression_statement] = STATE(1532), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1726), + [sym_function_static_declaration] = STATE(1726), + [sym_global_declaration] = STATE(1726), + [sym_namespace_definition] = STATE(1726), + [sym_namespace_use_declaration] = STATE(1726), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1726), + [sym_interface_declaration] = STATE(1726), + [sym_class_declaration] = STATE(1726), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1726), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1726), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1726), + [sym_unset_statement] = STATE(1726), + [sym_declare_statement] = STATE(1726), + [sym_try_statement] = STATE(1726), + [sym_goto_statement] = STATE(1726), + [sym_continue_statement] = STATE(1726), + [sym_break_statement] = STATE(1726), + [sym_return_statement] = STATE(1726), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1726), + [sym_do_statement] = STATE(1726), + [sym_for_statement] = STATE(1726), + [sym_foreach_statement] = STATE(1726), + [sym_if_statement] = STATE(1726), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1726), + [sym_compound_statement] = STATE(1726), + [sym_named_label_statement] = STATE(1726), + [sym_expression_statement] = STATE(1726), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(460), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(462), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(465), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(467), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(464), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(469), + [sym_heredoc] = ACTIONS(284), }, [46] = { [sym_text_interpolation] = STATE(46), - [sym_empty_statement] = STATE(1658), - [sym_function_static_declaration] = STATE(1658), - [sym_global_declaration] = STATE(1658), - [sym_namespace_definition] = STATE(1658), - [sym_namespace_use_declaration] = STATE(1658), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1658), - [sym_interface_declaration] = STATE(1658), - [sym_class_declaration] = STATE(1658), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1658), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1658), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1658), - [sym_unset_statement] = STATE(1658), - [sym_declare_statement] = STATE(1658), - [sym_try_statement] = STATE(1658), - [sym_goto_statement] = STATE(1658), - [sym_continue_statement] = STATE(1658), - [sym_break_statement] = STATE(1658), - [sym_return_statement] = STATE(1658), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1658), - [sym_do_statement] = STATE(1658), - [sym_for_statement] = STATE(1658), - [sym_foreach_statement] = STATE(1658), - [sym_if_statement] = STATE(1658), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1658), - [sym_compound_statement] = STATE(1658), - [sym_named_label_statement] = STATE(1658), - [sym_expression_statement] = STATE(1658), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1593), + [sym_function_static_declaration] = STATE(1593), + [sym_global_declaration] = STATE(1593), + [sym_namespace_definition] = STATE(1593), + [sym_namespace_use_declaration] = STATE(1593), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1593), + [sym_interface_declaration] = STATE(1593), + [sym_class_declaration] = STATE(1593), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1593), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1593), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1593), + [sym_unset_statement] = STATE(1593), + [sym_declare_statement] = STATE(1593), + [sym_try_statement] = STATE(1593), + [sym_goto_statement] = STATE(1593), + [sym_continue_statement] = STATE(1593), + [sym_break_statement] = STATE(1593), + [sym_return_statement] = STATE(1593), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1593), + [sym_do_statement] = STATE(1593), + [sym_for_statement] = STATE(1593), + [sym_foreach_statement] = STATE(1593), + [sym_if_statement] = STATE(1593), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1593), + [sym_compound_statement] = STATE(1593), + [sym_named_label_statement] = STATE(1593), + [sym_expression_statement] = STATE(1593), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(466), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(468), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(471), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(473), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(470), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(475), + [sym_heredoc] = ACTIONS(284), }, [47] = { [sym_text_interpolation] = STATE(47), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(460), + [sym_function_static_declaration] = STATE(460), + [sym_global_declaration] = STATE(460), + [sym_namespace_definition] = STATE(460), + [sym_namespace_use_declaration] = STATE(460), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(460), + [sym_interface_declaration] = STATE(460), + [sym_class_declaration] = STATE(460), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(460), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(460), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(460), + [sym_unset_statement] = STATE(460), + [sym_declare_statement] = STATE(460), + [sym_try_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_foreach_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(460), + [sym_compound_statement] = STATE(460), + [sym_named_label_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(65), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(472), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(477), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(479), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(481), + [sym_heredoc] = ACTIONS(284), }, [48] = { [sym_text_interpolation] = STATE(48), - [sym_empty_statement] = STATE(1581), - [sym_function_static_declaration] = STATE(1581), - [sym_global_declaration] = STATE(1581), - [sym_namespace_definition] = STATE(1581), - [sym_namespace_use_declaration] = STATE(1581), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1581), - [sym_interface_declaration] = STATE(1581), - [sym_class_declaration] = STATE(1581), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1581), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1581), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1581), - [sym_unset_statement] = STATE(1581), - [sym_declare_statement] = STATE(1581), - [sym_try_statement] = STATE(1581), - [sym_goto_statement] = STATE(1581), - [sym_continue_statement] = STATE(1581), - [sym_break_statement] = STATE(1581), - [sym_return_statement] = STATE(1581), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1581), - [sym_do_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_foreach_statement] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1581), - [sym_compound_statement] = STATE(1581), - [sym_named_label_statement] = STATE(1581), - [sym_expression_statement] = STATE(1581), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1630), + [sym_function_static_declaration] = STATE(1630), + [sym_global_declaration] = STATE(1630), + [sym_namespace_definition] = STATE(1630), + [sym_namespace_use_declaration] = STATE(1630), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1630), + [sym_interface_declaration] = STATE(1630), + [sym_class_declaration] = STATE(1630), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1630), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1630), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1630), + [sym_unset_statement] = STATE(1630), + [sym_declare_statement] = STATE(1630), + [sym_try_statement] = STATE(1630), + [sym_goto_statement] = STATE(1630), + [sym_continue_statement] = STATE(1630), + [sym_break_statement] = STATE(1630), + [sym_return_statement] = STATE(1630), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1630), + [sym_do_statement] = STATE(1630), + [sym_for_statement] = STATE(1630), + [sym_foreach_statement] = STATE(1630), + [sym_if_statement] = STATE(1630), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1630), + [sym_compound_statement] = STATE(1630), + [sym_named_label_statement] = STATE(1630), + [sym_expression_statement] = STATE(1630), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(474), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(476), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(483), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(485), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(478), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(487), + [sym_heredoc] = ACTIONS(284), }, [49] = { [sym_text_interpolation] = STATE(49), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(24), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(480), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(489), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [50] = { [sym_text_interpolation] = STATE(50), - [sym_empty_statement] = STATE(1595), - [sym_function_static_declaration] = STATE(1595), - [sym_global_declaration] = STATE(1595), - [sym_namespace_definition] = STATE(1595), - [sym_namespace_use_declaration] = STATE(1595), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1595), - [sym_interface_declaration] = STATE(1595), - [sym_class_declaration] = STATE(1595), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1595), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1595), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1595), - [sym_unset_statement] = STATE(1595), - [sym_declare_statement] = STATE(1595), - [sym_try_statement] = STATE(1595), - [sym_goto_statement] = STATE(1595), - [sym_continue_statement] = STATE(1595), - [sym_break_statement] = STATE(1595), - [sym_return_statement] = STATE(1595), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1595), - [sym_do_statement] = STATE(1595), - [sym_for_statement] = STATE(1595), - [sym_foreach_statement] = STATE(1595), - [sym_if_statement] = STATE(1595), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1595), - [sym_compound_statement] = STATE(1595), - [sym_named_label_statement] = STATE(1595), - [sym_expression_statement] = STATE(1595), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1675), + [sym_function_static_declaration] = STATE(1675), + [sym_global_declaration] = STATE(1675), + [sym_namespace_definition] = STATE(1675), + [sym_namespace_use_declaration] = STATE(1675), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1675), + [sym_interface_declaration] = STATE(1675), + [sym_class_declaration] = STATE(1675), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1675), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1675), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1675), + [sym_unset_statement] = STATE(1675), + [sym_declare_statement] = STATE(1675), + [sym_try_statement] = STATE(1675), + [sym_goto_statement] = STATE(1675), + [sym_continue_statement] = STATE(1675), + [sym_break_statement] = STATE(1675), + [sym_return_statement] = STATE(1675), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1675), + [sym_do_statement] = STATE(1675), + [sym_for_statement] = STATE(1675), + [sym_foreach_statement] = STATE(1675), + [sym_if_statement] = STATE(1675), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1675), + [sym_compound_statement] = STATE(1675), + [sym_named_label_statement] = STATE(1675), + [sym_expression_statement] = STATE(1675), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(482), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(484), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(491), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(493), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(486), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(495), + [sym_heredoc] = ACTIONS(284), }, [51] = { [sym_text_interpolation] = STATE(51), @@ -15937,20 +16015,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_declaration] = STATE(1278), [sym_namespace_definition] = STATE(1278), [sym_namespace_use_declaration] = STATE(1278), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), [sym_trait_declaration] = STATE(1278), [sym_interface_declaration] = STATE(1278), [sym_class_declaration] = STATE(1278), - [sym_class_modifier] = STATE(1998), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), [sym_const_declaration] = STATE(1278), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), [sym_function_definition] = STATE(1278), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), [sym_echo_statement] = STATE(1278), [sym_unset_statement] = STATE(1278), [sym_declare_statement] = STATE(1278), @@ -15959,2616 +16038,3098 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_continue_statement] = STATE(1278), [sym_break_statement] = STATE(1278), [sym_return_statement] = STATE(1278), - [sym_throw_expression] = STATE(936), + [sym_throw_expression] = STATE(932), [sym_while_statement] = STATE(1278), [sym_do_statement] = STATE(1278), [sym_for_statement] = STATE(1278), [sym_foreach_statement] = STATE(1278), [sym_if_statement] = STATE(1278), - [sym_colon_block] = STATE(1268), - [sym_match_expression] = STATE(955), + [sym_colon_block] = STATE(1283), + [sym_match_expression] = STATE(898), [sym_switch_statement] = STATE(1278), [sym_compound_statement] = STATE(1278), [sym_named_label_statement] = STATE(1278), [sym_expression_statement] = STATE(1278), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(436), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(432), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(437), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [52] = { [sym_text_interpolation] = STATE(52), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(2), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(79), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(452), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [ts_builtin_sym_end] = ACTIONS(497), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [53] = { [sym_text_interpolation] = STATE(53), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(54), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(488), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(499), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [54] = { [sym_text_interpolation] = STATE(54), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(490), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(501), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [55] = { [sym_text_interpolation] = STATE(55), - [sym_empty_statement] = STATE(1625), - [sym_function_static_declaration] = STATE(1625), - [sym_global_declaration] = STATE(1625), - [sym_namespace_definition] = STATE(1625), - [sym_namespace_use_declaration] = STATE(1625), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1625), - [sym_interface_declaration] = STATE(1625), - [sym_class_declaration] = STATE(1625), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1625), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1625), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1625), - [sym_unset_statement] = STATE(1625), - [sym_declare_statement] = STATE(1625), - [sym_try_statement] = STATE(1625), - [sym_goto_statement] = STATE(1625), - [sym_continue_statement] = STATE(1625), - [sym_break_statement] = STATE(1625), - [sym_return_statement] = STATE(1625), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1625), - [sym_do_statement] = STATE(1625), - [sym_for_statement] = STATE(1625), - [sym_foreach_statement] = STATE(1625), - [sym_if_statement] = STATE(1625), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1625), - [sym_compound_statement] = STATE(1625), - [sym_named_label_statement] = STATE(1625), - [sym_expression_statement] = STATE(1625), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1521), + [sym_function_static_declaration] = STATE(1521), + [sym_global_declaration] = STATE(1521), + [sym_namespace_definition] = STATE(1521), + [sym_namespace_use_declaration] = STATE(1521), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1521), + [sym_interface_declaration] = STATE(1521), + [sym_class_declaration] = STATE(1521), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1521), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1521), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1521), + [sym_unset_statement] = STATE(1521), + [sym_declare_statement] = STATE(1521), + [sym_try_statement] = STATE(1521), + [sym_goto_statement] = STATE(1521), + [sym_continue_statement] = STATE(1521), + [sym_break_statement] = STATE(1521), + [sym_return_statement] = STATE(1521), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1521), + [sym_do_statement] = STATE(1521), + [sym_for_statement] = STATE(1521), + [sym_foreach_statement] = STATE(1521), + [sym_if_statement] = STATE(1521), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1521), + [sym_compound_statement] = STATE(1521), + [sym_named_label_statement] = STATE(1521), + [sym_expression_statement] = STATE(1521), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(454), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(456), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(459), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(461), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(458), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(463), + [sym_heredoc] = ACTIONS(284), }, [56] = { [sym_text_interpolation] = STATE(56), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), - [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1726), + [sym_function_static_declaration] = STATE(1726), + [sym_global_declaration] = STATE(1726), + [sym_namespace_definition] = STATE(1726), + [sym_namespace_use_declaration] = STATE(1726), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1726), + [sym_interface_declaration] = STATE(1726), + [sym_class_declaration] = STATE(1726), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1726), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1726), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1726), + [sym_unset_statement] = STATE(1726), + [sym_declare_statement] = STATE(1726), + [sym_try_statement] = STATE(1726), + [sym_goto_statement] = STATE(1726), + [sym_continue_statement] = STATE(1726), + [sym_break_statement] = STATE(1726), + [sym_return_statement] = STATE(1726), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1726), + [sym_do_statement] = STATE(1726), + [sym_for_statement] = STATE(1726), + [sym_foreach_statement] = STATE(1726), + [sym_if_statement] = STATE(1726), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1726), + [sym_compound_statement] = STATE(1726), + [sym_named_label_statement] = STATE(1726), + [sym_expression_statement] = STATE(1726), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(80), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(492), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(465), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(467), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(469), + [sym_heredoc] = ACTIONS(284), }, [57] = { [sym_text_interpolation] = STATE(57), - [sym_empty_statement] = STATE(1532), - [sym_function_static_declaration] = STATE(1532), - [sym_global_declaration] = STATE(1532), - [sym_namespace_definition] = STATE(1532), - [sym_namespace_use_declaration] = STATE(1532), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1532), - [sym_interface_declaration] = STATE(1532), - [sym_class_declaration] = STATE(1532), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1532), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1532), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1532), - [sym_unset_statement] = STATE(1532), - [sym_declare_statement] = STATE(1532), - [sym_try_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1532), - [sym_do_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_foreach_statement] = STATE(1532), - [sym_if_statement] = STATE(1532), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1532), - [sym_compound_statement] = STATE(1532), - [sym_named_label_statement] = STATE(1532), - [sym_expression_statement] = STATE(1532), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), + [sym__const_declaration] = STATE(474), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(460), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(462), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(457), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(464), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [58] = { [sym_text_interpolation] = STATE(58), - [sym_empty_statement] = STATE(1658), - [sym_function_static_declaration] = STATE(1658), - [sym_global_declaration] = STATE(1658), - [sym_namespace_definition] = STATE(1658), - [sym_namespace_use_declaration] = STATE(1658), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1658), - [sym_interface_declaration] = STATE(1658), - [sym_class_declaration] = STATE(1658), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1658), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1658), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1658), - [sym_unset_statement] = STATE(1658), - [sym_declare_statement] = STATE(1658), - [sym_try_statement] = STATE(1658), - [sym_goto_statement] = STATE(1658), - [sym_continue_statement] = STATE(1658), - [sym_break_statement] = STATE(1658), - [sym_return_statement] = STATE(1658), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1658), - [sym_do_statement] = STATE(1658), - [sym_for_statement] = STATE(1658), - [sym_foreach_statement] = STATE(1658), - [sym_if_statement] = STATE(1658), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1658), - [sym_compound_statement] = STATE(1658), - [sym_named_label_statement] = STATE(1658), - [sym_expression_statement] = STATE(1658), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1593), + [sym_function_static_declaration] = STATE(1593), + [sym_global_declaration] = STATE(1593), + [sym_namespace_definition] = STATE(1593), + [sym_namespace_use_declaration] = STATE(1593), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1593), + [sym_interface_declaration] = STATE(1593), + [sym_class_declaration] = STATE(1593), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1593), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1593), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1593), + [sym_unset_statement] = STATE(1593), + [sym_declare_statement] = STATE(1593), + [sym_try_statement] = STATE(1593), + [sym_goto_statement] = STATE(1593), + [sym_continue_statement] = STATE(1593), + [sym_break_statement] = STATE(1593), + [sym_return_statement] = STATE(1593), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1593), + [sym_do_statement] = STATE(1593), + [sym_for_statement] = STATE(1593), + [sym_foreach_statement] = STATE(1593), + [sym_if_statement] = STATE(1593), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1593), + [sym_compound_statement] = STATE(1593), + [sym_named_label_statement] = STATE(1593), + [sym_expression_statement] = STATE(1593), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(466), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(468), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(471), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(473), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(470), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(475), + [sym_heredoc] = ACTIONS(284), }, [59] = { [sym_text_interpolation] = STATE(59), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(480), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(489), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [60] = { [sym_text_interpolation] = STATE(60), - [sym_empty_statement] = STATE(1581), - [sym_function_static_declaration] = STATE(1581), - [sym_global_declaration] = STATE(1581), - [sym_namespace_definition] = STATE(1581), - [sym_namespace_use_declaration] = STATE(1581), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1581), - [sym_interface_declaration] = STATE(1581), - [sym_class_declaration] = STATE(1581), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1581), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1581), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1581), - [sym_unset_statement] = STATE(1581), - [sym_declare_statement] = STATE(1581), - [sym_try_statement] = STATE(1581), - [sym_goto_statement] = STATE(1581), - [sym_continue_statement] = STATE(1581), - [sym_break_statement] = STATE(1581), - [sym_return_statement] = STATE(1581), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1581), - [sym_do_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_foreach_statement] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1581), - [sym_compound_statement] = STATE(1581), - [sym_named_label_statement] = STATE(1581), - [sym_expression_statement] = STATE(1581), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1630), + [sym_function_static_declaration] = STATE(1630), + [sym_global_declaration] = STATE(1630), + [sym_namespace_definition] = STATE(1630), + [sym_namespace_use_declaration] = STATE(1630), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1630), + [sym_interface_declaration] = STATE(1630), + [sym_class_declaration] = STATE(1630), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1630), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1630), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1630), + [sym_unset_statement] = STATE(1630), + [sym_declare_statement] = STATE(1630), + [sym_try_statement] = STATE(1630), + [sym_goto_statement] = STATE(1630), + [sym_continue_statement] = STATE(1630), + [sym_break_statement] = STATE(1630), + [sym_return_statement] = STATE(1630), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1630), + [sym_do_statement] = STATE(1630), + [sym_for_statement] = STATE(1630), + [sym_foreach_statement] = STATE(1630), + [sym_if_statement] = STATE(1630), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1630), + [sym_compound_statement] = STATE(1630), + [sym_named_label_statement] = STATE(1630), + [sym_expression_statement] = STATE(1630), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(474), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(476), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(483), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(485), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(478), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(487), + [sym_heredoc] = ACTIONS(284), }, [61] = { [sym_text_interpolation] = STATE(61), - [sym_empty_statement] = STATE(488), - [sym_function_static_declaration] = STATE(488), - [sym_global_declaration] = STATE(488), - [sym_namespace_definition] = STATE(488), - [sym_namespace_use_declaration] = STATE(488), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(488), - [sym_interface_declaration] = STATE(488), - [sym_class_declaration] = STATE(488), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(488), + [sym_empty_statement] = STATE(487), + [sym_function_static_declaration] = STATE(487), + [sym_global_declaration] = STATE(487), + [sym_namespace_definition] = STATE(487), + [sym_namespace_use_declaration] = STATE(487), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(487), + [sym_interface_declaration] = STATE(487), + [sym_class_declaration] = STATE(487), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(487), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(488), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(488), - [sym_unset_statement] = STATE(488), - [sym_declare_statement] = STATE(488), - [sym_try_statement] = STATE(488), - [sym_goto_statement] = STATE(488), - [sym_continue_statement] = STATE(488), - [sym_break_statement] = STATE(488), - [sym_return_statement] = STATE(488), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(488), - [sym_do_statement] = STATE(488), - [sym_for_statement] = STATE(488), - [sym_foreach_statement] = STATE(488), - [sym_if_statement] = STATE(488), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(488), - [sym_compound_statement] = STATE(488), - [sym_named_label_statement] = STATE(488), - [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(487), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(487), + [sym_unset_statement] = STATE(487), + [sym_declare_statement] = STATE(487), + [sym_try_statement] = STATE(487), + [sym_goto_statement] = STATE(487), + [sym_continue_statement] = STATE(487), + [sym_break_statement] = STATE(487), + [sym_return_statement] = STATE(487), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(487), + [sym_do_statement] = STATE(487), + [sym_for_statement] = STATE(487), + [sym_foreach_statement] = STATE(487), + [sym_if_statement] = STATE(487), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(487), + [sym_compound_statement] = STATE(487), + [sym_named_label_statement] = STATE(487), + [sym_expression_statement] = STATE(487), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(494), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(496), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(503), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(505), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(498), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(507), + [sym_heredoc] = ACTIONS(284), }, [62] = { [sym_text_interpolation] = STATE(62), - [sym_empty_statement] = STATE(1595), - [sym_function_static_declaration] = STATE(1595), - [sym_global_declaration] = STATE(1595), - [sym_namespace_definition] = STATE(1595), - [sym_namespace_use_declaration] = STATE(1595), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1595), - [sym_interface_declaration] = STATE(1595), - [sym_class_declaration] = STATE(1595), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1595), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1595), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1595), - [sym_unset_statement] = STATE(1595), - [sym_declare_statement] = STATE(1595), - [sym_try_statement] = STATE(1595), - [sym_goto_statement] = STATE(1595), - [sym_continue_statement] = STATE(1595), - [sym_break_statement] = STATE(1595), - [sym_return_statement] = STATE(1595), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1595), - [sym_do_statement] = STATE(1595), - [sym_for_statement] = STATE(1595), - [sym_foreach_statement] = STATE(1595), - [sym_if_statement] = STATE(1595), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1595), - [sym_compound_statement] = STATE(1595), - [sym_named_label_statement] = STATE(1595), - [sym_expression_statement] = STATE(1595), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1675), + [sym_function_static_declaration] = STATE(1675), + [sym_global_declaration] = STATE(1675), + [sym_namespace_definition] = STATE(1675), + [sym_namespace_use_declaration] = STATE(1675), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1675), + [sym_interface_declaration] = STATE(1675), + [sym_class_declaration] = STATE(1675), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1675), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1675), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1675), + [sym_unset_statement] = STATE(1675), + [sym_declare_statement] = STATE(1675), + [sym_try_statement] = STATE(1675), + [sym_goto_statement] = STATE(1675), + [sym_continue_statement] = STATE(1675), + [sym_break_statement] = STATE(1675), + [sym_return_statement] = STATE(1675), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1675), + [sym_do_statement] = STATE(1675), + [sym_for_statement] = STATE(1675), + [sym_foreach_statement] = STATE(1675), + [sym_if_statement] = STATE(1675), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1675), + [sym_compound_statement] = STATE(1675), + [sym_named_label_statement] = STATE(1675), + [sym_expression_statement] = STATE(1675), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(482), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(484), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(491), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(493), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(486), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(495), + [sym_heredoc] = ACTIONS(284), }, [63] = { [sym_text_interpolation] = STATE(63), - [sym_empty_statement] = STATE(463), - [sym_function_static_declaration] = STATE(463), - [sym_global_declaration] = STATE(463), - [sym_namespace_definition] = STATE(463), - [sym_namespace_use_declaration] = STATE(463), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(463), - [sym_interface_declaration] = STATE(463), - [sym_class_declaration] = STATE(463), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(463), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(463), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(463), - [sym_unset_statement] = STATE(463), - [sym_declare_statement] = STATE(463), - [sym_try_statement] = STATE(463), - [sym_goto_statement] = STATE(463), - [sym_continue_statement] = STATE(463), - [sym_break_statement] = STATE(463), - [sym_return_statement] = STATE(463), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(463), - [sym_do_statement] = STATE(463), - [sym_for_statement] = STATE(463), - [sym_foreach_statement] = STATE(463), - [sym_if_statement] = STATE(463), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(463), - [sym_compound_statement] = STATE(463), - [sym_named_label_statement] = STATE(463), - [sym_expression_statement] = STATE(463), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(64), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(500), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(502), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(509), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(504), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [64] = { [sym_text_interpolation] = STATE(64), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(506), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(511), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [65] = { [sym_text_interpolation] = STATE(65), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(492), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [ts_builtin_sym_end] = ACTIONS(497), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [66] = { [sym_text_interpolation] = STATE(66), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(67), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(508), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(513), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [67] = { [sym_text_interpolation] = STATE(67), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(510), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(515), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [68] = { [sym_text_interpolation] = STATE(68), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), + [sym__const_declaration] = STATE(474), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(65), + [aux_sym_attribute_list_repeat2] = STATE(1111), + [ts_builtin_sym_end] = ACTIONS(517), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(284), + }, + [69] = { + [sym_text_interpolation] = STATE(69), + [sym_empty_statement] = STATE(501), + [sym_function_static_declaration] = STATE(501), + [sym_global_declaration] = STATE(501), + [sym_namespace_definition] = STATE(501), + [sym_namespace_use_declaration] = STATE(501), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(501), + [sym_interface_declaration] = STATE(501), + [sym_class_declaration] = STATE(501), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(501), + [sym__const_declaration] = STATE(474), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(501), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(501), + [sym_unset_statement] = STATE(501), + [sym_declare_statement] = STATE(501), + [sym_try_statement] = STATE(501), + [sym_goto_statement] = STATE(501), + [sym_continue_statement] = STATE(501), + [sym_break_statement] = STATE(501), + [sym_return_statement] = STATE(501), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(501), + [sym_do_statement] = STATE(501), + [sym_for_statement] = STATE(501), + [sym_foreach_statement] = STATE(501), + [sym_if_statement] = STATE(501), + [sym_colon_block] = STATE(1952), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(501), + [sym_compound_statement] = STATE(501), + [sym_named_label_statement] = STATE(501), + [sym_expression_statement] = STATE(501), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_attribute_list_repeat2] = STATE(1111), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(341), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(284), + }, + [70] = { + [sym_text_interpolation] = STATE(70), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), + [sym__const_declaration] = STATE(474), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_attribute_list_repeat2] = STATE(1111), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(519), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(284), + }, + [71] = { + [sym_text_interpolation] = STATE(71), [sym_empty_statement] = STATE(507), [sym_function_static_declaration] = STATE(507), [sym_global_declaration] = STATE(507), [sym_namespace_definition] = STATE(507), [sym_namespace_use_declaration] = STATE(507), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), [sym_trait_declaration] = STATE(507), [sym_interface_declaration] = STATE(507), [sym_class_declaration] = STATE(507), - [sym_class_modifier] = STATE(1986), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), [sym_const_declaration] = STATE(507), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), [sym_function_definition] = STATE(507), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), [sym_echo_statement] = STATE(507), [sym_unset_statement] = STATE(507), [sym_declare_statement] = STATE(507), @@ -18577,42915 +19138,42471 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_continue_statement] = STATE(507), [sym_break_statement] = STATE(507), [sym_return_statement] = STATE(507), - [sym_throw_expression] = STATE(936), + [sym_throw_expression] = STATE(932), [sym_while_statement] = STATE(507), [sym_do_statement] = STATE(507), [sym_for_statement] = STATE(507), [sym_foreach_statement] = STATE(507), [sym_if_statement] = STATE(507), - [sym_match_expression] = STATE(955), + [sym_match_expression] = STATE(898), [sym_switch_statement] = STATE(507), [sym_compound_statement] = STATE(507), [sym_named_label_statement] = STATE(507), [sym_expression_statement] = STATE(507), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(414), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(416), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(418), - [sym_heredoc] = ACTIONS(279), - }, - [69] = { - [sym_text_interpolation] = STATE(69), - [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(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(502), - [sym_interface_declaration] = STATE(502), - [sym_class_declaration] = STATE(502), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(502), - [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(502), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [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(936), - [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_colon_block] = STATE(2050), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(502), - [sym_compound_statement] = STATE(502), - [sym_named_label_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(336), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), - }, - [70] = { - [sym_text_interpolation] = STATE(70), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), - [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(59), - [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(512), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), - }, - [71] = { - [sym_text_interpolation] = STATE(71), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), - [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(52), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(514), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(419), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(421), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(423), + [sym_heredoc] = ACTIONS(284), }, [72] = { [sym_text_interpolation] = STATE(72), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(2), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(57), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(514), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(417), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [73] = { [sym_text_interpolation] = STATE(73), - [sym_empty_statement] = STATE(444), - [sym_function_static_declaration] = STATE(444), - [sym_global_declaration] = STATE(444), - [sym_namespace_definition] = STATE(444), - [sym_namespace_use_declaration] = STATE(444), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(444), - [sym_interface_declaration] = STATE(444), - [sym_class_declaration] = STATE(444), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(444), + [sym_empty_statement] = STATE(440), + [sym_function_static_declaration] = STATE(440), + [sym_global_declaration] = STATE(440), + [sym_namespace_definition] = STATE(440), + [sym_namespace_use_declaration] = STATE(440), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(440), + [sym_interface_declaration] = STATE(440), + [sym_class_declaration] = STATE(440), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(440), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(444), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(444), - [sym_unset_statement] = STATE(444), - [sym_declare_statement] = STATE(444), - [sym_try_statement] = STATE(444), - [sym_goto_statement] = STATE(444), - [sym_continue_statement] = STATE(444), - [sym_break_statement] = STATE(444), - [sym_return_statement] = STATE(444), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(444), - [sym_do_statement] = STATE(444), - [sym_for_statement] = STATE(444), - [sym_foreach_statement] = STATE(444), - [sym_if_statement] = STATE(444), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(444), - [sym_compound_statement] = STATE(444), - [sym_named_label_statement] = STATE(444), - [sym_expression_statement] = STATE(444), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(440), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(440), + [sym_unset_statement] = STATE(440), + [sym_declare_statement] = STATE(440), + [sym_try_statement] = STATE(440), + [sym_goto_statement] = STATE(440), + [sym_continue_statement] = STATE(440), + [sym_break_statement] = STATE(440), + [sym_return_statement] = STATE(440), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(440), + [sym_do_statement] = STATE(440), + [sym_for_statement] = STATE(440), + [sym_foreach_statement] = STATE(440), + [sym_if_statement] = STATE(440), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(440), + [sym_compound_statement] = STATE(440), + [sym_named_label_statement] = STATE(440), + [sym_expression_statement] = STATE(440), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(440), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(442), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(445), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(447), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(444), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(449), + [sym_heredoc] = ACTIONS(284), }, [74] = { [sym_text_interpolation] = STATE(74), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [aux_sym_declare_statement_token1] = ACTIONS(516), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [aux_sym_declare_statement_token1] = ACTIONS(521), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [75] = { [sym_text_interpolation] = STATE(75), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(74), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [aux_sym_declare_statement_token1] = ACTIONS(518), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [aux_sym_declare_statement_token1] = ACTIONS(523), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [76] = { [sym_text_interpolation] = STATE(76), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(20), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [aux_sym_declare_statement_token1] = ACTIONS(520), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [aux_sym_declare_statement_token1] = ACTIONS(525), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [77] = { [sym_text_interpolation] = STATE(77), - [sym_empty_statement] = STATE(463), - [sym_function_static_declaration] = STATE(463), - [sym_global_declaration] = STATE(463), - [sym_namespace_definition] = STATE(463), - [sym_namespace_use_declaration] = STATE(463), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(463), - [sym_interface_declaration] = STATE(463), - [sym_class_declaration] = STATE(463), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(463), + [sym_empty_statement] = STATE(460), + [sym_function_static_declaration] = STATE(460), + [sym_global_declaration] = STATE(460), + [sym_namespace_definition] = STATE(460), + [sym_namespace_use_declaration] = STATE(460), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(460), + [sym_interface_declaration] = STATE(460), + [sym_class_declaration] = STATE(460), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(460), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(463), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(463), - [sym_unset_statement] = STATE(463), - [sym_declare_statement] = STATE(463), - [sym_try_statement] = STATE(463), - [sym_goto_statement] = STATE(463), - [sym_continue_statement] = STATE(463), - [sym_break_statement] = STATE(463), - [sym_return_statement] = STATE(463), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(463), - [sym_do_statement] = STATE(463), - [sym_for_statement] = STATE(463), - [sym_foreach_statement] = STATE(463), - [sym_if_statement] = STATE(463), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(463), - [sym_compound_statement] = STATE(463), - [sym_named_label_statement] = STATE(463), - [sym_expression_statement] = STATE(463), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(460), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(460), + [sym_unset_statement] = STATE(460), + [sym_declare_statement] = STATE(460), + [sym_try_statement] = STATE(460), + [sym_goto_statement] = STATE(460), + [sym_continue_statement] = STATE(460), + [sym_break_statement] = STATE(460), + [sym_return_statement] = STATE(460), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(460), + [sym_do_statement] = STATE(460), + [sym_for_statement] = STATE(460), + [sym_foreach_statement] = STATE(460), + [sym_if_statement] = STATE(460), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(460), + [sym_compound_statement] = STATE(460), + [sym_named_label_statement] = STATE(460), + [sym_expression_statement] = STATE(460), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(500), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(502), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(477), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(479), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(504), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(481), + [sym_heredoc] = ACTIONS(284), }, [78] = { [sym_text_interpolation] = STATE(78), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_RBRACE] = ACTIONS(522), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [anon_sym_RBRACE] = ACTIONS(527), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [79] = { [sym_text_interpolation] = STATE(79), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(72), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_for_statement_token2] = ACTIONS(524), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [ts_builtin_sym_end] = ACTIONS(529), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [80] = { [sym_text_interpolation] = STATE(80), - [sym_empty_statement] = STATE(476), - [sym_function_static_declaration] = STATE(476), - [sym_global_declaration] = STATE(476), - [sym_namespace_definition] = STATE(476), - [sym_namespace_use_declaration] = STATE(476), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(476), - [sym_interface_declaration] = STATE(476), - [sym_class_declaration] = STATE(476), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(476), + [sym_empty_statement] = STATE(475), + [sym_function_static_declaration] = STATE(475), + [sym_global_declaration] = STATE(475), + [sym_namespace_definition] = STATE(475), + [sym_namespace_use_declaration] = STATE(475), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(475), + [sym_interface_declaration] = STATE(475), + [sym_class_declaration] = STATE(475), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(475), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(476), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(476), - [sym_unset_statement] = STATE(476), - [sym_declare_statement] = STATE(476), - [sym_try_statement] = STATE(476), - [sym_goto_statement] = STATE(476), - [sym_continue_statement] = STATE(476), - [sym_break_statement] = STATE(476), - [sym_return_statement] = STATE(476), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(476), - [sym_do_statement] = STATE(476), - [sym_for_statement] = STATE(476), - [sym_foreach_statement] = STATE(476), - [sym_if_statement] = STATE(476), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(476), - [sym_compound_statement] = STATE(476), - [sym_named_label_statement] = STATE(476), - [sym_expression_statement] = STATE(476), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(475), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(475), + [sym_unset_statement] = STATE(475), + [sym_declare_statement] = STATE(475), + [sym_try_statement] = STATE(475), + [sym_goto_statement] = STATE(475), + [sym_continue_statement] = STATE(475), + [sym_break_statement] = STATE(475), + [sym_return_statement] = STATE(475), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(475), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(475), + [sym_foreach_statement] = STATE(475), + [sym_if_statement] = STATE(475), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(475), + [sym_compound_statement] = STATE(475), + [sym_named_label_statement] = STATE(475), + [sym_expression_statement] = STATE(475), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [aux_sym_program_repeat1] = STATE(2), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [aux_sym_program_repeat1] = STATE(21), [aux_sym_attribute_list_repeat2] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(526), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_for_statement_token2] = ACTIONS(531), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [81] = { [sym_text_interpolation] = STATE(81), - [sym_empty_statement] = STATE(488), - [sym_function_static_declaration] = STATE(488), - [sym_global_declaration] = STATE(488), - [sym_namespace_definition] = STATE(488), - [sym_namespace_use_declaration] = STATE(488), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(488), - [sym_interface_declaration] = STATE(488), - [sym_class_declaration] = STATE(488), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(488), + [sym_empty_statement] = STATE(487), + [sym_function_static_declaration] = STATE(487), + [sym_global_declaration] = STATE(487), + [sym_namespace_definition] = STATE(487), + [sym_namespace_use_declaration] = STATE(487), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(487), + [sym_interface_declaration] = STATE(487), + [sym_class_declaration] = STATE(487), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(487), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(488), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(488), - [sym_unset_statement] = STATE(488), - [sym_declare_statement] = STATE(488), - [sym_try_statement] = STATE(488), - [sym_goto_statement] = STATE(488), - [sym_continue_statement] = STATE(488), - [sym_break_statement] = STATE(488), - [sym_return_statement] = STATE(488), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(488), - [sym_do_statement] = STATE(488), - [sym_for_statement] = STATE(488), - [sym_foreach_statement] = STATE(488), - [sym_if_statement] = STATE(488), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(488), - [sym_compound_statement] = STATE(488), - [sym_named_label_statement] = STATE(488), - [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(487), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(487), + [sym_unset_statement] = STATE(487), + [sym_declare_statement] = STATE(487), + [sym_try_statement] = STATE(487), + [sym_goto_statement] = STATE(487), + [sym_continue_statement] = STATE(487), + [sym_break_statement] = STATE(487), + [sym_return_statement] = STATE(487), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(487), + [sym_do_statement] = STATE(487), + [sym_for_statement] = STATE(487), + [sym_foreach_statement] = STATE(487), + [sym_if_statement] = STATE(487), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(487), + [sym_compound_statement] = STATE(487), + [sym_named_label_statement] = STATE(487), + [sym_expression_statement] = STATE(487), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(494), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(496), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(503), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(505), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(498), - [sym_heredoc] = ACTIONS(279), + [sym__automatic_semicolon] = ACTIONS(507), + [sym_heredoc] = ACTIONS(284), }, [82] = { [sym_text_interpolation] = STATE(82), - [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(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym_class_declaration] = STATE(2004), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(2004), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(2004), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [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(936), - [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(955), - [sym_switch_statement] = STATE(2004), - [sym_compound_statement] = STATE(2004), - [sym_named_label_statement] = STATE(2004), - [sym_expression_statement] = STATE(2004), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [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(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(2009), + [sym_interface_declaration] = STATE(2009), + [sym_class_declaration] = STATE(2009), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(2009), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(2009), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [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(932), + [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(898), + [sym_switch_statement] = STATE(2009), + [sym_compound_statement] = STATE(2009), + [sym_named_label_statement] = STATE(2009), + [sym_expression_statement] = STATE(2009), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(436), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [83] = { [sym_text_interpolation] = STATE(83), - [sym_empty_statement] = STATE(446), - [sym_function_static_declaration] = STATE(446), - [sym_global_declaration] = STATE(446), - [sym_namespace_definition] = STATE(446), - [sym_namespace_use_declaration] = STATE(446), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(446), - [sym_interface_declaration] = STATE(446), - [sym_class_declaration] = STATE(446), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(446), + [sym_empty_statement] = STATE(443), + [sym_function_static_declaration] = STATE(443), + [sym_global_declaration] = STATE(443), + [sym_namespace_definition] = STATE(443), + [sym_namespace_use_declaration] = STATE(443), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(443), + [sym_interface_declaration] = STATE(443), + [sym_class_declaration] = STATE(443), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(443), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(446), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(446), - [sym_unset_statement] = STATE(446), - [sym_declare_statement] = STATE(446), - [sym_try_statement] = STATE(446), - [sym_goto_statement] = STATE(446), - [sym_continue_statement] = STATE(446), - [sym_break_statement] = STATE(446), - [sym_return_statement] = STATE(446), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(446), - [sym_do_statement] = STATE(446), - [sym_for_statement] = STATE(446), - [sym_foreach_statement] = STATE(446), - [sym_if_statement] = STATE(446), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(446), - [sym_compound_statement] = STATE(446), - [sym_named_label_statement] = STATE(446), - [sym_expression_statement] = STATE(446), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(443), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(443), + [sym_unset_statement] = STATE(443), + [sym_declare_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_goto_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_foreach_statement] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(443), + [sym_compound_statement] = STATE(443), + [sym_named_label_statement] = STATE(443), + [sym_expression_statement] = STATE(443), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [84] = { [sym_text_interpolation] = STATE(84), - [sym_empty_statement] = STATE(1549), - [sym_function_static_declaration] = STATE(1549), - [sym_global_declaration] = STATE(1549), - [sym_namespace_definition] = STATE(1549), - [sym_namespace_use_declaration] = STATE(1549), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1549), - [sym_interface_declaration] = STATE(1549), - [sym_class_declaration] = STATE(1549), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1549), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1549), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1549), - [sym_unset_statement] = STATE(1549), - [sym_declare_statement] = STATE(1549), - [sym_try_statement] = STATE(1549), - [sym_goto_statement] = STATE(1549), - [sym_continue_statement] = STATE(1549), - [sym_break_statement] = STATE(1549), - [sym_return_statement] = STATE(1549), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1549), - [sym_do_statement] = STATE(1549), - [sym_for_statement] = STATE(1549), - [sym_foreach_statement] = STATE(1549), - [sym_if_statement] = STATE(1549), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1549), - [sym_compound_statement] = STATE(1549), - [sym_named_label_statement] = STATE(1549), - [sym_expression_statement] = STATE(1549), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1506), + [sym_function_static_declaration] = STATE(1506), + [sym_global_declaration] = STATE(1506), + [sym_namespace_definition] = STATE(1506), + [sym_namespace_use_declaration] = STATE(1506), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1506), + [sym_interface_declaration] = STATE(1506), + [sym_class_declaration] = STATE(1506), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1506), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1506), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1506), + [sym_unset_statement] = STATE(1506), + [sym_declare_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_goto_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_foreach_statement] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1506), + [sym_compound_statement] = STATE(1506), + [sym_named_label_statement] = STATE(1506), + [sym_expression_statement] = STATE(1506), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(436), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [85] = { [sym_text_interpolation] = STATE(85), - [sym_empty_statement] = STATE(470), - [sym_function_static_declaration] = STATE(470), - [sym_global_declaration] = STATE(470), - [sym_namespace_definition] = STATE(470), - [sym_namespace_use_declaration] = STATE(470), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(470), - [sym_interface_declaration] = STATE(470), - [sym_class_declaration] = STATE(470), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(470), + [sym_empty_statement] = STATE(467), + [sym_function_static_declaration] = STATE(467), + [sym_global_declaration] = STATE(467), + [sym_namespace_definition] = STATE(467), + [sym_namespace_use_declaration] = STATE(467), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(467), + [sym_interface_declaration] = STATE(467), + [sym_class_declaration] = STATE(467), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(467), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(470), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(470), - [sym_unset_statement] = STATE(470), - [sym_declare_statement] = STATE(470), - [sym_try_statement] = STATE(470), - [sym_goto_statement] = STATE(470), - [sym_continue_statement] = STATE(470), - [sym_break_statement] = STATE(470), - [sym_return_statement] = STATE(470), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(470), - [sym_do_statement] = STATE(470), - [sym_for_statement] = STATE(470), - [sym_foreach_statement] = STATE(470), - [sym_if_statement] = STATE(470), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(470), - [sym_compound_statement] = STATE(470), - [sym_named_label_statement] = STATE(470), - [sym_expression_statement] = STATE(470), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(467), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(467), + [sym_unset_statement] = STATE(467), + [sym_declare_statement] = STATE(467), + [sym_try_statement] = STATE(467), + [sym_goto_statement] = STATE(467), + [sym_continue_statement] = STATE(467), + [sym_break_statement] = STATE(467), + [sym_return_statement] = STATE(467), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(467), + [sym_do_statement] = STATE(467), + [sym_for_statement] = STATE(467), + [sym_foreach_statement] = STATE(467), + [sym_if_statement] = STATE(467), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(467), + [sym_compound_statement] = STATE(467), + [sym_named_label_statement] = STATE(467), + [sym_expression_statement] = STATE(467), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(305), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(309), - [aux_sym_foreach_statement_token1] = ACTIONS(311), - [aux_sym_if_statement_token1] = ACTIONS(313), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(310), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(312), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(314), + [aux_sym_foreach_statement_token1] = ACTIONS(316), + [aux_sym_if_statement_token1] = ACTIONS(318), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [86] = { [sym_text_interpolation] = STATE(86), - [sym_empty_statement] = STATE(446), - [sym_function_static_declaration] = STATE(446), - [sym_global_declaration] = STATE(446), - [sym_namespace_definition] = STATE(446), - [sym_namespace_use_declaration] = STATE(446), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(446), - [sym_interface_declaration] = STATE(446), - [sym_class_declaration] = STATE(446), - [sym_class_modifier] = STATE(1986), - [sym_const_declaration] = STATE(446), + [sym_empty_statement] = STATE(443), + [sym_function_static_declaration] = STATE(443), + [sym_global_declaration] = STATE(443), + [sym_namespace_definition] = STATE(443), + [sym_namespace_use_declaration] = STATE(443), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(443), + [sym_interface_declaration] = STATE(443), + [sym_class_declaration] = STATE(443), + [sym_final_modifier] = STATE(1989), + [sym_abstract_modifier] = STATE(1989), + [sym_const_declaration] = STATE(443), [sym__const_declaration] = STATE(474), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(1983), - [sym_function_definition] = STATE(446), - [sym__function_definition_header] = STATE(1875), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(446), - [sym_unset_statement] = STATE(446), - [sym_declare_statement] = STATE(446), - [sym_try_statement] = STATE(446), - [sym_goto_statement] = STATE(446), - [sym_continue_statement] = STATE(446), - [sym_break_statement] = STATE(446), - [sym_return_statement] = STATE(446), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(446), - [sym_do_statement] = STATE(446), - [sym_for_statement] = STATE(446), - [sym_foreach_statement] = STATE(446), - [sym_if_statement] = STATE(446), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(446), - [sym_compound_statement] = STATE(446), - [sym_named_label_statement] = STATE(446), - [sym_expression_statement] = STATE(446), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(1985), + [sym_function_definition] = STATE(443), + [sym__function_definition_header] = STATE(1871), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(443), + [sym_unset_statement] = STATE(443), + [sym_declare_statement] = STATE(443), + [sym_try_statement] = STATE(443), + [sym_goto_statement] = STATE(443), + [sym_continue_statement] = STATE(443), + [sym_break_statement] = STATE(443), + [sym_return_statement] = STATE(443), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(443), + [sym_do_statement] = STATE(443), + [sym_for_statement] = STATE(443), + [sym_foreach_statement] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(443), + [sym_compound_statement] = STATE(443), + [sym_named_label_statement] = STATE(443), + [sym_expression_statement] = STATE(443), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1304), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1248), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(183), - [aux_sym_function_static_declaration_token1] = ACTIONS(185), - [aux_sym_global_declaration_token1] = ACTIONS(187), - [aux_sym_namespace_definition_token1] = ACTIONS(189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(199), - [aux_sym_trait_declaration_token1] = ACTIONS(203), - [aux_sym_interface_declaration_token1] = ACTIONS(205), - [aux_sym_class_declaration_token1] = ACTIONS(207), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(219), - [aux_sym_echo_statement_token1] = ACTIONS(221), - [anon_sym_declare] = ACTIONS(223), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(227), - [aux_sym_goto_statement_token1] = ACTIONS(229), - [aux_sym_continue_statement_token1] = ACTIONS(231), - [aux_sym_break_statement_token1] = ACTIONS(233), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(235), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(239), - [aux_sym_do_statement_token1] = ACTIONS(241), - [aux_sym_for_statement_token1] = ACTIONS(243), - [aux_sym_foreach_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(247), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(184), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(186), + [aux_sym_function_static_declaration_token1] = ACTIONS(188), + [aux_sym_global_declaration_token1] = ACTIONS(190), + [aux_sym_namespace_definition_token1] = ACTIONS(192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(198), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(202), + [aux_sym_trait_declaration_token1] = ACTIONS(206), + [aux_sym_interface_declaration_token1] = ACTIONS(208), + [aux_sym_class_declaration_token1] = ACTIONS(210), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(224), + [aux_sym_echo_statement_token1] = ACTIONS(226), + [anon_sym_declare] = ACTIONS(228), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(232), + [aux_sym_goto_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(236), + [aux_sym_break_statement_token1] = ACTIONS(238), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(244), + [aux_sym_do_statement_token1] = ACTIONS(246), + [aux_sym_for_statement_token1] = ACTIONS(248), + [aux_sym_foreach_statement_token1] = ACTIONS(250), + [aux_sym_if_statement_token1] = ACTIONS(252), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [87] = { [sym_text_interpolation] = STATE(87), - [sym_empty_statement] = STATE(1549), - [sym_function_static_declaration] = STATE(1549), - [sym_global_declaration] = STATE(1549), - [sym_namespace_definition] = STATE(1549), - [sym_namespace_use_declaration] = STATE(1549), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1549), - [sym_interface_declaration] = STATE(1549), - [sym_class_declaration] = STATE(1549), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1549), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1549), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1549), - [sym_unset_statement] = STATE(1549), - [sym_declare_statement] = STATE(1549), - [sym_try_statement] = STATE(1549), - [sym_goto_statement] = STATE(1549), - [sym_continue_statement] = STATE(1549), - [sym_break_statement] = STATE(1549), - [sym_return_statement] = STATE(1549), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1549), - [sym_do_statement] = STATE(1549), - [sym_for_statement] = STATE(1549), - [sym_foreach_statement] = STATE(1549), - [sym_if_statement] = STATE(1549), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1549), - [sym_compound_statement] = STATE(1549), - [sym_named_label_statement] = STATE(1549), - [sym_expression_statement] = STATE(1549), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1506), + [sym_function_static_declaration] = STATE(1506), + [sym_global_declaration] = STATE(1506), + [sym_namespace_definition] = STATE(1506), + [sym_namespace_use_declaration] = STATE(1506), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1506), + [sym_interface_declaration] = STATE(1506), + [sym_class_declaration] = STATE(1506), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1506), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1506), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1506), + [sym_unset_statement] = STATE(1506), + [sym_declare_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_goto_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_foreach_statement] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1506), + [sym_compound_statement] = STATE(1506), + [sym_named_label_statement] = STATE(1506), + [sym_expression_statement] = STATE(1506), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(436), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [88] = { [sym_text_interpolation] = STATE(88), - [sym_empty_statement] = STATE(1535), - [sym_function_static_declaration] = STATE(1535), - [sym_global_declaration] = STATE(1535), - [sym_namespace_definition] = STATE(1535), - [sym_namespace_use_declaration] = STATE(1535), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(1535), - [sym_interface_declaration] = STATE(1535), - [sym_class_declaration] = STATE(1535), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(1535), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(1535), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(1535), - [sym_unset_statement] = STATE(1535), - [sym_declare_statement] = STATE(1535), - [sym_try_statement] = STATE(1535), - [sym_goto_statement] = STATE(1535), - [sym_continue_statement] = STATE(1535), - [sym_break_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(1535), - [sym_do_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_foreach_statement] = STATE(1535), - [sym_if_statement] = STATE(1535), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(1535), - [sym_compound_statement] = STATE(1535), - [sym_named_label_statement] = STATE(1535), - [sym_expression_statement] = STATE(1535), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(1541), + [sym_function_static_declaration] = STATE(1541), + [sym_global_declaration] = STATE(1541), + [sym_namespace_definition] = STATE(1541), + [sym_namespace_use_declaration] = STATE(1541), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(1541), + [sym_interface_declaration] = STATE(1541), + [sym_class_declaration] = STATE(1541), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(1541), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(1541), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(1541), + [sym_unset_statement] = STATE(1541), + [sym_declare_statement] = STATE(1541), + [sym_try_statement] = STATE(1541), + [sym_goto_statement] = STATE(1541), + [sym_continue_statement] = STATE(1541), + [sym_break_statement] = STATE(1541), + [sym_return_statement] = STATE(1541), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(1541), + [sym_do_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_foreach_statement] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1541), + [sym_compound_statement] = STATE(1541), + [sym_named_label_statement] = STATE(1541), + [sym_expression_statement] = STATE(1541), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(436), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(370), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(382), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(386), - [aux_sym_foreach_statement_token1] = ACTIONS(388), - [aux_sym_if_statement_token1] = ACTIONS(390), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(375), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(387), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(391), + [aux_sym_foreach_statement_token1] = ACTIONS(393), + [aux_sym_if_statement_token1] = ACTIONS(395), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [89] = { [sym_text_interpolation] = STATE(89), - [sym_empty_statement] = STATE(2016), - [sym_function_static_declaration] = STATE(2016), - [sym_global_declaration] = STATE(2016), - [sym_namespace_definition] = STATE(2016), - [sym_namespace_use_declaration] = STATE(2016), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_trait_declaration] = STATE(2016), - [sym_interface_declaration] = STATE(2016), - [sym_class_declaration] = STATE(2016), - [sym_class_modifier] = STATE(1998), - [sym_const_declaration] = STATE(2016), - [sym__const_declaration] = STATE(1643), - [sym_static_modifier] = STATE(1984), - [sym_visibility_modifier] = STATE(2024), - [sym_function_definition] = STATE(2016), - [sym__function_definition_header] = STATE(1830), - [sym_arrow_function] = STATE(936), - [sym_echo_statement] = STATE(2016), - [sym_unset_statement] = STATE(2016), - [sym_declare_statement] = STATE(2016), - [sym_try_statement] = STATE(2016), - [sym_goto_statement] = STATE(2016), - [sym_continue_statement] = STATE(2016), - [sym_break_statement] = STATE(2016), - [sym_return_statement] = STATE(2016), - [sym_throw_expression] = STATE(936), - [sym_while_statement] = STATE(2016), - [sym_do_statement] = STATE(2016), - [sym_for_statement] = STATE(2016), - [sym_foreach_statement] = STATE(2016), - [sym_if_statement] = STATE(2016), - [sym_match_expression] = STATE(955), - [sym_switch_statement] = STATE(2016), - [sym_compound_statement] = STATE(2016), - [sym_named_label_statement] = STATE(2016), - [sym_expression_statement] = STATE(2016), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_empty_statement] = STATE(2001), + [sym_function_static_declaration] = STATE(2001), + [sym_global_declaration] = STATE(2001), + [sym_namespace_definition] = STATE(2001), + [sym_namespace_use_declaration] = STATE(2001), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_trait_declaration] = STATE(2001), + [sym_interface_declaration] = STATE(2001), + [sym_class_declaration] = STATE(2001), + [sym_final_modifier] = STATE(2003), + [sym_abstract_modifier] = STATE(2003), + [sym_const_declaration] = STATE(2001), + [sym__const_declaration] = STATE(1737), + [sym_static_modifier] = STATE(1977), + [sym_visibility_modifier] = STATE(2005), + [sym_function_definition] = STATE(2001), + [sym__function_definition_header] = STATE(1752), + [sym_arrow_function] = STATE(932), + [sym_echo_statement] = STATE(2001), + [sym_unset_statement] = STATE(2001), + [sym_declare_statement] = STATE(2001), + [sym_try_statement] = STATE(2001), + [sym_goto_statement] = STATE(2001), + [sym_continue_statement] = STATE(2001), + [sym_break_statement] = STATE(2001), + [sym_return_statement] = STATE(2001), + [sym_throw_expression] = STATE(932), + [sym_while_statement] = STATE(2001), + [sym_do_statement] = STATE(2001), + [sym_for_statement] = STATE(2001), + [sym_foreach_statement] = STATE(2001), + [sym_if_statement] = STATE(2001), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(2001), + [sym_compound_statement] = STATE(2001), + [sym_named_label_statement] = STATE(2001), + [sym_expression_statement] = STATE(2001), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_list] = STATE(1276), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym_attribute_list] = STATE(1240), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), [aux_sym_attribute_list_repeat2] = STATE(1111), - [sym_name] = ACTIONS(344), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(436), - [aux_sym_function_static_declaration_token1] = ACTIONS(348), - [aux_sym_global_declaration_token1] = ACTIONS(350), - [aux_sym_namespace_definition_token1] = ACTIONS(352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(356), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(358), - [aux_sym_trait_declaration_token1] = ACTIONS(360), - [aux_sym_interface_declaration_token1] = ACTIONS(362), - [aux_sym_class_declaration_token1] = ACTIONS(364), - [aux_sym_class_modifier_token1] = ACTIONS(209), - [aux_sym_class_modifier_token2] = ACTIONS(209), - [aux_sym_visibility_modifier_token1] = ACTIONS(211), - [aux_sym_visibility_modifier_token2] = ACTIONS(211), - [aux_sym_visibility_modifier_token3] = ACTIONS(211), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [anon_sym_unset] = ACTIONS(366), - [aux_sym_echo_statement_token1] = ACTIONS(368), - [anon_sym_declare] = ACTIONS(400), - [sym_float] = ACTIONS(225), - [aux_sym_try_statement_token1] = ACTIONS(372), - [aux_sym_goto_statement_token1] = ACTIONS(374), - [aux_sym_continue_statement_token1] = ACTIONS(376), - [aux_sym_break_statement_token1] = ACTIONS(378), - [sym_integer] = ACTIONS(225), - [aux_sym_return_statement_token1] = ACTIONS(380), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_while_statement_token1] = ACTIONS(402), - [aux_sym_do_statement_token1] = ACTIONS(384), - [aux_sym_for_statement_token1] = ACTIONS(404), - [aux_sym_foreach_statement_token1] = ACTIONS(406), - [aux_sym_if_statement_token1] = ACTIONS(408), - [aux_sym_match_expression_token1] = ACTIONS(249), - [aux_sym_switch_statement_token1] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [anon_sym_POUND_LBRACK] = ACTIONS(277), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), + [sym_name] = ACTIONS(349), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(353), + [aux_sym_global_declaration_token1] = ACTIONS(355), + [aux_sym_namespace_definition_token1] = ACTIONS(357), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(359), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(363), + [aux_sym_trait_declaration_token1] = ACTIONS(365), + [aux_sym_interface_declaration_token1] = ACTIONS(367), + [aux_sym_class_declaration_token1] = ACTIONS(369), + [aux_sym_final_modifier_token1] = ACTIONS(212), + [aux_sym_abstract_modifier_token1] = ACTIONS(214), + [aux_sym_visibility_modifier_token1] = ACTIONS(216), + [aux_sym_visibility_modifier_token2] = ACTIONS(216), + [aux_sym_visibility_modifier_token3] = ACTIONS(216), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [anon_sym_unset] = ACTIONS(371), + [aux_sym_echo_statement_token1] = ACTIONS(373), + [anon_sym_declare] = ACTIONS(405), + [sym_float] = ACTIONS(230), + [aux_sym_try_statement_token1] = ACTIONS(377), + [aux_sym_goto_statement_token1] = ACTIONS(379), + [aux_sym_continue_statement_token1] = ACTIONS(381), + [aux_sym_break_statement_token1] = ACTIONS(383), + [sym_integer] = ACTIONS(230), + [aux_sym_return_statement_token1] = ACTIONS(385), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_while_statement_token1] = ACTIONS(407), + [aux_sym_do_statement_token1] = ACTIONS(389), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(254), + [aux_sym_switch_statement_token1] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [anon_sym_POUND_LBRACK] = ACTIONS(282), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(279), + [sym_heredoc] = ACTIONS(284), }, [90] = { [sym_text_interpolation] = STATE(90), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(813), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(816), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), - [sym_variadic_unpacking] = STATE(764), + [sym_variadic_unpacking] = STATE(775), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(761), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(530), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_AMP] = ACTIONS(540), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_EQ_GT] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(546), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_array] = ACTIONS(548), - [anon_sym_COLON] = ACTIONS(530), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(558), - [anon_sym_STAR_STAR] = ACTIONS(530), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [anon_sym_from] = ACTIONS(580), - [aux_sym_binary_expression_token1] = ACTIONS(538), - [anon_sym_QMARK_QMARK] = ACTIONS(530), - [aux_sym_binary_expression_token2] = ACTIONS(538), - [aux_sym_binary_expression_token3] = ACTIONS(538), - [aux_sym_binary_expression_token4] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_CARET] = ACTIONS(530), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT_GT] = ACTIONS(530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_EQ_GT] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(530), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(756), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(545), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_EQ_GT] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(551), + [anon_sym_QMARK] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(543), + [anon_sym_array] = ACTIONS(553), + [anon_sym_COLON] = ACTIONS(535), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(563), + [anon_sym_STAR_STAR] = ACTIONS(535), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [anon_sym_from] = ACTIONS(585), + [aux_sym_binary_expression_token1] = ACTIONS(543), + [anon_sym_QMARK_QMARK] = ACTIONS(535), + [aux_sym_binary_expression_token2] = ACTIONS(543), + [aux_sym_binary_expression_token3] = ACTIONS(543), + [aux_sym_binary_expression_token4] = ACTIONS(543), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT_GT] = ACTIONS(535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_LT_EQ_GT] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(535), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_DOT] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_SLASH] = ACTIONS(543), + [anon_sym_PERCENT] = ACTIONS(535), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [91] = { [sym_text_interpolation] = STATE(91), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(854), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(856), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), - [sym_variadic_unpacking] = STATE(764), + [sym_variadic_unpacking] = STATE(775), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(761), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(530), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_AMP] = ACTIONS(592), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_EQ_GT] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_STAR_STAR] = ACTIONS(530), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(530), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_from] = ACTIONS(616), - [aux_sym_binary_expression_token1] = ACTIONS(538), - [anon_sym_QMARK_QMARK] = ACTIONS(530), - [aux_sym_binary_expression_token2] = ACTIONS(538), - [aux_sym_binary_expression_token3] = ACTIONS(538), - [aux_sym_binary_expression_token4] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_CARET] = ACTIONS(530), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT_GT] = ACTIONS(530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_EQ_GT] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(530), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(756), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(535), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(597), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_EQ_GT] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(543), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(609), + [anon_sym_STAR_STAR] = ACTIONS(535), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(535), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_from] = ACTIONS(621), + [aux_sym_binary_expression_token1] = ACTIONS(543), + [anon_sym_QMARK_QMARK] = ACTIONS(535), + [aux_sym_binary_expression_token2] = ACTIONS(543), + [aux_sym_binary_expression_token3] = ACTIONS(543), + [aux_sym_binary_expression_token4] = ACTIONS(543), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT_GT] = ACTIONS(535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_LT_EQ_GT] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(535), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_DOT] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_SLASH] = ACTIONS(543), + [anon_sym_PERCENT] = ACTIONS(535), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [92] = { [sym_text_interpolation] = STATE(92), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(910), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(937), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), - [sym_variadic_unpacking] = STATE(903), + [sym_variadic_unpacking] = STATE(917), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_array_element_initializer] = STATE(912), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(530), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [anon_sym_COMMA] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(632), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_EQ_GT] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(634), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(257), - [anon_sym_STAR_STAR] = ACTIONS(530), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_from] = ACTIONS(636), - [aux_sym_binary_expression_token1] = ACTIONS(538), - [anon_sym_QMARK_QMARK] = ACTIONS(530), - [aux_sym_binary_expression_token2] = ACTIONS(538), - [aux_sym_binary_expression_token3] = ACTIONS(538), - [aux_sym_binary_expression_token4] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_CARET] = ACTIONS(530), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT_GT] = ACTIONS(530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_EQ_GT] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(530), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym__automatic_semicolon] = ACTIONS(530), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_array_element_initializer] = STATE(946), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(535), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(637), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_EQ_GT] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(543), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(262), + [anon_sym_STAR_STAR] = ACTIONS(535), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [anon_sym_from] = ACTIONS(641), + [aux_sym_binary_expression_token1] = ACTIONS(543), + [anon_sym_QMARK_QMARK] = ACTIONS(535), + [aux_sym_binary_expression_token2] = ACTIONS(543), + [aux_sym_binary_expression_token3] = ACTIONS(543), + [aux_sym_binary_expression_token4] = ACTIONS(543), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT_GT] = ACTIONS(535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_LT_EQ_GT] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(535), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_DOT] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_SLASH] = ACTIONS(543), + [anon_sym_PERCENT] = ACTIONS(535), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym__automatic_semicolon] = ACTIONS(535), + [sym_heredoc] = ACTIONS(284), }, [93] = { [sym_text_interpolation] = STATE(93), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(978), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(993), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(761), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(530), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(638), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_EQ_GT] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(530), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [anon_sym_from] = ACTIONS(662), - [aux_sym_binary_expression_token1] = ACTIONS(538), - [anon_sym_QMARK_QMARK] = ACTIONS(530), - [aux_sym_binary_expression_token2] = ACTIONS(538), - [aux_sym_binary_expression_token3] = ACTIONS(538), - [aux_sym_binary_expression_token4] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_CARET] = ACTIONS(530), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT_GT] = ACTIONS(530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_EQ_GT] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(530), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(756), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(535), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(643), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_EQ_GT] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_QMARK] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(543), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_STAR_STAR] = ACTIONS(535), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [anon_sym_from] = ACTIONS(667), + [aux_sym_binary_expression_token1] = ACTIONS(543), + [anon_sym_QMARK_QMARK] = ACTIONS(535), + [aux_sym_binary_expression_token2] = ACTIONS(543), + [aux_sym_binary_expression_token3] = ACTIONS(543), + [aux_sym_binary_expression_token4] = ACTIONS(543), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT_GT] = ACTIONS(535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_LT_EQ_GT] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(535), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_DOT] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_SLASH] = ACTIONS(543), + [anon_sym_PERCENT] = ACTIONS(535), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [94] = { [sym_text_interpolation] = STATE(94), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(2099), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(2084), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [95] = { [sym_text_interpolation] = STATE(95), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(2048), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(1986), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [96] = { [sym_text_interpolation] = STATE(96), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(1981), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(1995), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [97] = { [sym_text_interpolation] = STATE(97), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(1958), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(2067), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [98] = { [sym_text_interpolation] = STATE(98), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(1987), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(1971), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [99] = { [sym_text_interpolation] = STATE(99), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(1949), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1060), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(2056), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1042), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [100] = { [sym_text_interpolation] = STATE(100), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(1978), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(1975), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1042), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [101] = { [sym_text_interpolation] = STATE(101), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(1980), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1060), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(1970), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [102] = { [sym_text_interpolation] = STATE(102), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(1966), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(2053), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [103] = { [sym_text_interpolation] = STATE(103), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(1949), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(2056), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [104] = { [sym_text_interpolation] = STATE(104), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_cast_type] = STATE(2002), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_cast_type] = STATE(1990), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_float] = ACTIONS(674), - [anon_sym_int] = ACTIONS(674), - [anon_sym_string] = ACTIONS(674), - [anon_sym_binary] = ACTIONS(674), - [anon_sym_boolean] = ACTIONS(674), - [anon_sym_double] = ACTIONS(674), - [anon_sym_integer] = ACTIONS(674), - [anon_sym_object] = ACTIONS(674), - [anon_sym_real] = ACTIONS(674), - [anon_sym_unset] = ACTIONS(674), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(677), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_int] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_binary] = ACTIONS(679), + [anon_sym_boolean] = ACTIONS(679), + [anon_sym_double] = ACTIONS(679), + [anon_sym_integer] = ACTIONS(679), + [anon_sym_object] = ACTIONS(679), + [anon_sym_real] = ACTIONS(679), + [anon_sym_unset] = ACTIONS(679), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [105] = { [sym_text_interpolation] = STATE(105), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(854), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(856), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), - [sym_variadic_unpacking] = STATE(764), + [sym_variadic_unpacking] = STATE(775), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1597), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(676), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(680), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1562), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(681), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [106] = { [sym_text_interpolation] = STATE(106), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1002), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(856), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(594), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(594), - [sym_nullsafe_member_access_expression] = STATE(594), - [sym_scoped_property_access_expression] = STATE(594), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1393), - [sym_function_call_expression] = STATE(559), - [sym_scoped_call_expression] = STATE(559), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(559), - [sym_nullsafe_member_call_expression] = STATE(559), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(559), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(559), - [sym_variable_name] = STATE(559), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1597), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(676), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_RBRACK] = ACTIONS(682), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1702), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [107] = { [sym_text_interpolation] = STATE(107), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1002), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(993), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(594), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(594), - [sym_nullsafe_member_access_expression] = STATE(594), - [sym_scoped_property_access_expression] = STATE(594), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1393), - [sym_function_call_expression] = STATE(559), - [sym_scoped_call_expression] = STATE(559), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(559), - [sym_nullsafe_member_call_expression] = STATE(559), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(559), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(559), - [sym_variable_name] = STATE(559), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1597), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(676), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_RBRACK] = ACTIONS(684), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1528), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(691), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(693), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [108] = { [sym_text_interpolation] = STATE(108), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), [sym__expression] = STATE(1002), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(594), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(594), - [sym_nullsafe_member_access_expression] = STATE(594), - [sym_scoped_property_access_expression] = STATE(594), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1393), - [sym_function_call_expression] = STATE(559), - [sym_scoped_call_expression] = STATE(559), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(559), - [sym_nullsafe_member_call_expression] = STATE(559), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(559), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(559), - [sym_variable_name] = STATE(559), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1492), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(686), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_RBRACK] = ACTIONS(688), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(590), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(590), + [sym_nullsafe_member_access_expression] = STATE(590), + [sym_scoped_property_access_expression] = STATE(590), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1397), + [sym_function_call_expression] = STATE(567), + [sym_scoped_call_expression] = STATE(567), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(567), + [sym_nullsafe_member_call_expression] = STATE(567), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(567), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(567), + [sym_variable_name] = STATE(567), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1562), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(681), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(697), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [109] = { [sym_text_interpolation] = STATE(109), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(854), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(993), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1492), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(686), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1572), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(699), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(693), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [110] = { [sym_text_interpolation] = STATE(110), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(978), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1002), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1520), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(692), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(694), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(696), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(590), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(590), + [sym_nullsafe_member_access_expression] = STATE(590), + [sym_scoped_property_access_expression] = STATE(590), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1397), + [sym_function_call_expression] = STATE(567), + [sym_scoped_call_expression] = STATE(567), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(567), + [sym_nullsafe_member_call_expression] = STATE(567), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(567), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(567), + [sym_variable_name] = STATE(567), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1562), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(681), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(703), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [111] = { [sym_text_interpolation] = STATE(111), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), [sym__expression] = STATE(1002), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(594), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(594), - [sym_nullsafe_member_access_expression] = STATE(594), - [sym_scoped_property_access_expression] = STATE(594), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1393), - [sym_function_call_expression] = STATE(559), - [sym_scoped_call_expression] = STATE(559), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(559), - [sym_nullsafe_member_call_expression] = STATE(559), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(559), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(559), - [sym_variable_name] = STATE(559), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1597), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(676), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(590), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(590), + [sym_nullsafe_member_access_expression] = STATE(590), + [sym_scoped_property_access_expression] = STATE(590), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1397), + [sym_function_call_expression] = STATE(567), + [sym_scoped_call_expression] = STATE(567), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(567), + [sym_nullsafe_member_call_expression] = STATE(567), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(567), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(567), + [sym_variable_name] = STATE(567), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1562), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(681), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(705), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [112] = { [sym_text_interpolation] = STATE(112), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), [sym__expression] = STATE(1002), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(594), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(594), - [sym_nullsafe_member_access_expression] = STATE(594), - [sym_scoped_property_access_expression] = STATE(594), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1393), - [sym_function_call_expression] = STATE(559), - [sym_scoped_call_expression] = STATE(559), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(559), - [sym_nullsafe_member_call_expression] = STATE(559), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(559), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(559), - [sym_variable_name] = STATE(559), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1597), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(676), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_RBRACK] = ACTIONS(700), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(590), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(590), + [sym_nullsafe_member_access_expression] = STATE(590), + [sym_scoped_property_access_expression] = STATE(590), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1397), + [sym_function_call_expression] = STATE(567), + [sym_scoped_call_expression] = STATE(567), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(567), + [sym_nullsafe_member_call_expression] = STATE(567), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(567), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(567), + [sym_variable_name] = STATE(567), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1702), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(707), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [113] = { [sym_text_interpolation] = STATE(113), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(978), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1002), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1573), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(702), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(694), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(590), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(590), + [sym_nullsafe_member_access_expression] = STATE(590), + [sym_scoped_property_access_expression] = STATE(590), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1397), + [sym_function_call_expression] = STATE(567), + [sym_scoped_call_expression] = STATE(567), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(567), + [sym_nullsafe_member_call_expression] = STATE(567), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(567), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(567), + [sym_variable_name] = STATE(567), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1562), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(681), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [114] = { [sym_text_interpolation] = STATE(114), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(854), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym_match_condition_list] = STATE(2064), + [sym_match_conditional_expression] = STATE(1945), + [sym_match_default_expression] = STATE(1945), + [sym__expression] = STATE(1008), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), - [sym_variadic_unpacking] = STATE(764), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(706), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(711), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [aux_sym_match_default_expression_token1] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [115] = { [sym_text_interpolation] = STATE(115), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(854), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(856), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), - [sym_variadic_unpacking] = STATE(764), + [sym_variadic_unpacking] = STATE(775), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(708), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(715), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [116] = { [sym_text_interpolation] = STATE(116), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym_match_condition_list] = STATE(1997), - [sym_match_conditional_expression] = STATE(1905), - [sym_match_default_expression] = STATE(1905), - [sym__expression] = STATE(1007), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym_match_condition_list] = STATE(2064), + [sym_match_conditional_expression] = STATE(1945), + [sym_match_default_expression] = STATE(1945), + [sym__expression] = STATE(1008), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(710), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [aux_sym_match_default_expression_token1] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(717), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [aux_sym_match_default_expression_token1] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [117] = { [sym_text_interpolation] = STATE(117), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(854), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(993), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(714), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(693), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [118] = { [sym_text_interpolation] = STATE(118), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym_match_condition_list] = STATE(1997), - [sym_match_conditional_expression] = STATE(1905), - [sym_match_default_expression] = STATE(1905), - [sym__expression] = STATE(1007), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(856), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), + [sym_variadic_unpacking] = STATE(775), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(716), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [aux_sym_match_default_expression_token1] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [119] = { [sym_text_interpolation] = STATE(119), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym_match_condition_list] = STATE(1997), - [sym_match_conditional_expression] = STATE(1905), - [sym_match_default_expression] = STATE(1905), - [sym__expression] = STATE(1007), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(693), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [120] = { + [sym_text_interpolation] = STATE(120), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(856), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), + [sym_variadic_unpacking] = STATE(775), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(718), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [aux_sym_match_default_expression_token1] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [120] = { - [sym_text_interpolation] = STATE(120), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(694), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(725), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [121] = { [sym_text_interpolation] = STATE(121), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(854), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym_match_condition_list] = STATE(2064), + [sym_match_conditional_expression] = STATE(1945), + [sym_match_default_expression] = STATE(1945), + [sym__expression] = STATE(1008), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), - [sym_variadic_unpacking] = STATE(764), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(727), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [aux_sym_match_default_expression_token1] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [122] = { [sym_text_interpolation] = STATE(122), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(694), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [123] = { - [sym_text_interpolation] = STATE(123), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym_match_condition_list] = STATE(1997), - [sym_match_conditional_expression] = STATE(1905), - [sym_match_default_expression] = STATE(1905), - [sym__expression] = STATE(1007), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(856), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), + [sym_variadic_unpacking] = STATE(775), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(724), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [aux_sym_match_default_expression_token1] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [124] = { - [sym_text_interpolation] = STATE(124), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(694), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(719), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [125] = { - [sym_text_interpolation] = STATE(125), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(978), + [123] = { + [sym_text_interpolation] = STATE(123), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(993), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(694), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(693), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [126] = { - [sym_text_interpolation] = STATE(126), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym_match_condition_list] = STATE(1997), - [sym_match_conditional_expression] = STATE(1515), - [sym_match_default_expression] = STATE(1515), - [sym__expression] = STATE(1007), + [124] = { + [sym_text_interpolation] = STATE(124), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym_match_condition_list] = STATE(2064), + [sym_match_conditional_expression] = STATE(1945), + [sym_match_default_expression] = STATE(1945), + [sym__expression] = STATE(1008), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [aux_sym_match_default_expression_token1] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(731), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [aux_sym_match_default_expression_token1] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [125] = { + [sym_text_interpolation] = STATE(125), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(693), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [126] = { + [sym_text_interpolation] = STATE(126), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(775), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(693), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [127] = { [sym_text_interpolation] = STATE(127), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym_match_condition_list] = STATE(1997), - [sym_match_conditional_expression] = STATE(1650), - [sym_match_default_expression] = STATE(1650), - [sym__expression] = STATE(1007), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym_match_condition_list] = STATE(2064), + [sym_match_conditional_expression] = STATE(1520), + [sym_match_default_expression] = STATE(1520), + [sym__expression] = STATE(1008), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [aux_sym_match_default_expression_token1] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [aux_sym_match_default_expression_token1] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [128] = { [sym_text_interpolation] = STATE(128), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), [sym__expression] = STATE(1012), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_argument] = STATE(1665), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(1784), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(728), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_argument] = STATE(1652), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(1916), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(733), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [129] = { [sym_text_interpolation] = STATE(129), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1012), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_argument] = STATE(1610), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(1784), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(728), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [130] = { - [sym_text_interpolation] = STATE(130), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(854), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(856), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), - [sym_variadic_unpacking] = STATE(764), + [sym_variadic_unpacking] = STATE(775), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(678), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_array_element_initializer] = STATE(1729), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(683), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [130] = { + [sym_text_interpolation] = STATE(130), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1012), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_argument] = STATE(1679), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(1916), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(733), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [131] = { [sym_text_interpolation] = STATE(131), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), [sym__expression] = STATE(1012), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_argument] = STATE(1674), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(1784), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(728), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_argument] = STATE(1736), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(1916), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(733), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [132] = { [sym_text_interpolation] = STATE(132), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym_match_condition_list] = STATE(1997), - [sym_match_conditional_expression] = STATE(1905), - [sym_match_default_expression] = STATE(1905), - [sym__expression] = STATE(1007), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym_match_condition_list] = STATE(2064), + [sym_match_conditional_expression] = STATE(1945), + [sym_match_default_expression] = STATE(1945), + [sym__expression] = STATE(1008), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [aux_sym_match_default_expression_token1] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [aux_sym_match_default_expression_token1] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [133] = { [sym_text_interpolation] = STATE(133), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), [sym__expression] = STATE(1012), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_argument] = STATE(1647), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(1784), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(728), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_argument] = STATE(1670), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(1916), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(733), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [134] = { [sym_text_interpolation] = STATE(134), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1012), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym_match_condition_list] = STATE(2064), + [sym_match_conditional_expression] = STATE(1720), + [sym_match_default_expression] = STATE(1720), + [sym__expression] = STATE(1008), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_argument] = STATE(1709), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(1784), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(728), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [aux_sym_match_default_expression_token1] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [135] = { [sym_text_interpolation] = STATE(135), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), [sym__expression] = STATE(1012), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_argument] = STATE(1497), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(1784), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(728), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_argument] = STATE(1615), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(1916), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(733), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [136] = { [sym_text_interpolation] = STATE(136), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(978), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1012), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(764), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_array_element_initializer] = STATE(1731), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(694), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_argument] = STATE(1503), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(1916), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(733), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [137] = { [sym_text_interpolation] = STATE(137), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2055), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(1964), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(742), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [138] = { [sym_text_interpolation] = STATE(138), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(1975), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(1955), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(744), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [139] = { [sym_text_interpolation] = STATE(139), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2017), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2027), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [140] = { + [sym_text_interpolation] = STATE(140), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2022), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(746), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [140] = { - [sym_text_interpolation] = STATE(140), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2071), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(753), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [141] = { [sym_text_interpolation] = STATE(141), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2022), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1068), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(593), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(593), + [sym_nullsafe_member_access_expression] = STATE(593), + [sym_scoped_property_access_expression] = STATE(593), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1403), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(564), + [sym_scoped_call_expression] = STATE(564), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(564), + [sym_nullsafe_member_call_expression] = STATE(564), + [sym_subscript_expression] = STATE(564), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(564), + [sym_variable_name] = STATE(564), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [aux_sym__list_destructing_repeat1] = STATE(1684), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(755), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [142] = { [sym_text_interpolation] = STATE(142), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2029), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2052), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [143] = { [sym_text_interpolation] = STATE(143), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2087), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2107), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(754), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(763), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [144] = { [sym_text_interpolation] = STATE(144), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1056), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2093), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(592), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(592), - [sym_nullsafe_member_access_expression] = STATE(592), - [sym_scoped_property_access_expression] = STATE(592), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1403), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(555), - [sym_scoped_call_expression] = STATE(555), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(555), - [sym_nullsafe_member_call_expression] = STATE(555), - [sym_subscript_expression] = STATE(555), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(555), - [sym_variable_name] = STATE(555), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [aux_sym__list_destructing_repeat1] = STATE(1718), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(756), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(758), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(765), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [145] = { [sym_text_interpolation] = STATE(145), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2059), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2065), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(762), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(767), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [146] = { [sym_text_interpolation] = STATE(146), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2000), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2085), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(764), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(769), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [147] = { [sym_text_interpolation] = STATE(147), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2090), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2029), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(766), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(771), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [148] = { [sym_text_interpolation] = STATE(148), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2021), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2061), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(768), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(773), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [149] = { [sym_text_interpolation] = STATE(149), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2085), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(1968), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(770), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(775), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [150] = { [sym_text_interpolation] = STATE(150), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(1945), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(1967), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [151] = { [sym_text_interpolation] = STATE(151), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(1976), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2079), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [152] = { [sym_text_interpolation] = STATE(152), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2101), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(1965), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(776), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [153] = { [sym_text_interpolation] = STATE(153), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2061), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1012), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_argument] = STATE(1781), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(1916), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(733), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [154] = { [sym_text_interpolation] = STATE(154), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1012), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2038), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_argument] = STATE(1790), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(1784), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(728), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [155] = { [sym_text_interpolation] = STATE(155), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2095), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2096), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(780), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(785), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [156] = { [sym_text_interpolation] = STATE(156), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2033), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2101), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(787), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [157] = { [sym_text_interpolation] = STATE(157), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(1970), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [158] = { - [sym_text_interpolation] = STATE(158), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(1967), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [159] = { - [sym_text_interpolation] = STATE(159), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2081), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1035), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2092), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(788), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(789), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [158] = { + [sym_text_interpolation] = STATE(158), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2095), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [159] = { + [sym_text_interpolation] = STATE(159), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2035), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [160] = { [sym_text_interpolation] = STATE(160), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2086), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2063), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [161] = { [sym_text_interpolation] = STATE(161), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2053), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(1996), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1033), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [162] = { [sym_text_interpolation] = STATE(162), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__expressions] = STATE(2030), - [sym_sequence_expression] = STATE(1901), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1032), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__expressions] = STATE(2091), + [sym_sequence_expression] = STATE(1769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1017), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(799), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [163] = { [sym_text_interpolation] = STATE(163), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1026), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(796), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym__automatic_semicolon] = ACTIONS(796), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(801), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym__automatic_semicolon] = ACTIONS(801), + [sym_heredoc] = ACTIONS(284), }, [164] = { [sym_text_interpolation] = STATE(164), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1028), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1037), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(798), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym__automatic_semicolon] = ACTIONS(798), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(803), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym__automatic_semicolon] = ACTIONS(803), + [sym_heredoc] = ACTIONS(284), }, [165] = { [sym_text_interpolation] = STATE(165), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_foreach_pair] = STATE(2068), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1013), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(1762), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(800), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(805), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym__automatic_semicolon] = ACTIONS(805), + [sym_heredoc] = ACTIONS(284), }, [166] = { [sym_text_interpolation] = STATE(166), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1035), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(802), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym__automatic_semicolon] = ACTIONS(802), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(807), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym__automatic_semicolon] = ACTIONS(807), + [sym_heredoc] = ACTIONS(284), }, [167] = { [sym_text_interpolation] = STATE(167), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_foreach_pair] = STATE(1942), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1041), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_foreach_pair] = STATE(1947), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1026), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(1811), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(1812), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(804), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(809), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [168] = { [sym_text_interpolation] = STATE(168), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1020), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1036), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(806), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym__automatic_semicolon] = ACTIONS(806), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(811), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym__automatic_semicolon] = ACTIONS(811), + [sym_heredoc] = ACTIONS(284), }, [169] = { [sym_text_interpolation] = STATE(169), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(808), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym__automatic_semicolon] = ACTIONS(808), - [sym_heredoc] = ACTIONS(279), - }, - [170] = { - [sym_text_interpolation] = STATE(170), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_foreach_pair] = STATE(1974), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1025), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_foreach_pair] = STATE(2077), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1031), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(1892), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(1767), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(810), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(813), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [170] = { + [sym_text_interpolation] = STATE(170), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1020), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_variadic_unpacking] = STATE(1778), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(649), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [171] = { [sym_text_interpolation] = STATE(171), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym__expressions] = STATE(1874), - [sym_sequence_expression] = STATE(1871), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_foreach_pair] = STATE(2090), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1041), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(1756), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(815), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [172] = { [sym_text_interpolation] = STATE(172), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_variadic_unpacking] = STATE(1787), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [173] = { - [sym_text_interpolation] = STATE(173), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_foreach_pair] = STATE(2078), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1023), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_foreach_pair] = STATE(1966), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1014), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(1757), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(1897), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(812), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(817), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [173] = { + [sym_text_interpolation] = STATE(173), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym__expressions] = STATE(1876), + [sym_sequence_expression] = STATE(1867), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [174] = { [sym_text_interpolation] = STATE(174), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1083), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(602), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(602), - [sym_nullsafe_member_access_expression] = STATE(602), - [sym_scoped_property_access_expression] = STATE(602), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1673), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(587), - [sym_scoped_call_expression] = STATE(587), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(587), - [sym_nullsafe_member_call_expression] = STATE(587), - [sym_subscript_expression] = STATE(587), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(587), - [sym_variable_name] = STATE(587), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(814), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(758), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [175] = { - [sym_text_interpolation] = STATE(175), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym__expressions] = STATE(1877), - [sym_sequence_expression] = STATE(1871), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1038), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(819), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym__automatic_semicolon] = ACTIONS(819), + [sym_heredoc] = ACTIONS(284), }, - [176] = { - [sym_text_interpolation] = STATE(176), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1027), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [175] = { + [sym_text_interpolation] = STATE(175), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym__expressions] = STATE(1773), + [sym_sequence_expression] = STATE(1867), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(816), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym__automatic_semicolon] = ACTIONS(816), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), + }, + [176] = { + [sym_text_interpolation] = STATE(176), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(596), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(596), + [sym_nullsafe_member_access_expression] = STATE(596), + [sym_scoped_property_access_expression] = STATE(596), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1706), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(581), + [sym_scoped_call_expression] = STATE(581), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(581), + [sym_nullsafe_member_call_expression] = STATE(581), + [sym_subscript_expression] = STATE(581), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(581), + [sym_variable_name] = STATE(581), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(821), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [177] = { [sym_text_interpolation] = STATE(177), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1086), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1072), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(818), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [anon_sym_COLON] = ACTIONS(823), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [178] = { [sym_text_interpolation] = STATE(178), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1078), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1044), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [anon_sym_COLON] = ACTIONS(820), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [anon_sym_COLON] = ACTIONS(825), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [179] = { [sym_text_interpolation] = STATE(179), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(928), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(822), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [180] = { - [sym_text_interpolation] = STATE(180), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(862), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1085), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(600), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(600), - [sym_nullsafe_member_access_expression] = STATE(600), - [sym_scoped_property_access_expression] = STATE(600), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1399), - [sym_function_call_expression] = STATE(573), - [sym_scoped_call_expression] = STATE(573), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(573), - [sym_nullsafe_member_call_expression] = STATE(573), - [sym_subscript_expression] = STATE(573), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(573), - [sym_variable_name] = STATE(573), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(824), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [181] = { - [sym_text_interpolation] = STATE(181), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_sequence_expression] = STATE(1912), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [182] = { - [sym_text_interpolation] = STATE(182), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(817), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(826), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [anon_sym_COLON] = ACTIONS(827), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [180] = { + [sym_text_interpolation] = STATE(180), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(859), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(829), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [181] = { + [sym_text_interpolation] = STATE(181), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1084), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [182] = { + [sym_text_interpolation] = STATE(182), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1047), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(833), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [183] = { [sym_text_interpolation] = STATE(183), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1049), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(840), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [anon_sym_COLON] = ACTIONS(828), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1398), + [sym_function_call_expression] = STATE(584), + [sym_scoped_call_expression] = STATE(584), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(584), + [sym_nullsafe_member_call_expression] = STATE(584), + [sym_subscript_expression] = STATE(584), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(584), + [sym_variable_name] = STATE(584), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(835), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [184] = { [sym_text_interpolation] = STATE(184), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(897), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(830), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [185] = { - [sym_text_interpolation] = STATE(185), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1082), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1092), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(832), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(837), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [186] = { - [sym_text_interpolation] = STATE(186), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1059), + [185] = { + [sym_text_interpolation] = STATE(185), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1061), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(1801), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(1841), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(834), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(839), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [186] = { + [sym_text_interpolation] = STATE(186), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(900), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(841), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [187] = { [sym_text_interpolation] = STATE(187), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1088), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(823), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [anon_sym_COLON] = ACTIONS(836), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(843), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [188] = { [sym_text_interpolation] = STATE(188), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1048), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_sequence_expression] = STATE(1882), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1027), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(838), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [189] = { [sym_text_interpolation] = STATE(189), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(992), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(840), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_sequence_expression] = STATE(1789), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [190] = { [sym_text_interpolation] = STATE(190), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_sequence_expression] = STATE(1818), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1018), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [191] = { - [sym_text_interpolation] = STATE(191), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(795), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(842), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [192] = { - [sym_text_interpolation] = STATE(192), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(862), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1083), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(824), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(845), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [193] = { - [sym_text_interpolation] = STATE(193), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(852), + [191] = { + [sym_text_interpolation] = STATE(191), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(975), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(847), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [192] = { + [sym_text_interpolation] = STATE(192), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(840), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(844), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(835), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [193] = { + [sym_text_interpolation] = STATE(193), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_sequence_expression] = STATE(1882), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1030), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [194] = { [sym_text_interpolation] = STATE(194), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1079), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(846), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(933), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(849), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [195] = { [sym_text_interpolation] = STATE(195), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1052), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(988), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(851), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [196] = { + [sym_text_interpolation] = STATE(196), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1056), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [anon_sym_COLON] = ACTIONS(848), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [196] = { - [sym_text_interpolation] = STATE(196), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_sequence_expression] = STATE(1818), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [anon_sym_COLON] = ACTIONS(853), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [197] = { [sym_text_interpolation] = STATE(197), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(974), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(850), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [198] = { - [sym_text_interpolation] = STATE(198), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1070), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(790), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [anon_sym_AMP] = ACTIONS(855), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [198] = { + [sym_text_interpolation] = STATE(198), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(879), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [199] = { [sym_text_interpolation] = STATE(199), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(855), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(773), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [200] = { [sym_text_interpolation] = STATE(200), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(893), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(969), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [201] = { [sym_text_interpolation] = STATE(201), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(823), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(751), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [202] = { [sym_text_interpolation] = STATE(202), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(822), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(808), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [203] = { [sym_text_interpolation] = STATE(203), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(785), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1018), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [204] = { [sym_text_interpolation] = STATE(204), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(845), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(834), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [205] = { [sym_text_interpolation] = STATE(205), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(847), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(830), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [206] = { [sym_text_interpolation] = STATE(206), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(983), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(991), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [207] = { [sym_text_interpolation] = STATE(207), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(981), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(985), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [208] = { [sym_text_interpolation] = STATE(208), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(979), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(987), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [209] = { [sym_text_interpolation] = STATE(209), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1010), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(990), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [210] = { [sym_text_interpolation] = STATE(210), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1017), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1019), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [211] = { [sym_text_interpolation] = STATE(211), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(899), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [212] = { [sym_text_interpolation] = STATE(212), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(887), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(882), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [213] = { [sym_text_interpolation] = STATE(213), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(885), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(884), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [214] = { [sym_text_interpolation] = STATE(214), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(881), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(889), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [215] = { [sym_text_interpolation] = STATE(215), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(880), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(892), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [216] = { [sym_text_interpolation] = STATE(216), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(877), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(904), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [217] = { [sym_text_interpolation] = STATE(217), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(895), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(910), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [218] = { [sym_text_interpolation] = STATE(218), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(876), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(907), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [219] = { [sym_text_interpolation] = STATE(219), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(890), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(908), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [220] = { [sym_text_interpolation] = STATE(220), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(892), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(909), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [221] = { [sym_text_interpolation] = STATE(221), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(945), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(914), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [222] = { [sym_text_interpolation] = STATE(222), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), [sym__expression] = STATE(938), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [223] = { [sym_text_interpolation] = STATE(223), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(941), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(939), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [224] = { [sym_text_interpolation] = STATE(224), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(944), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(941), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [225] = { [sym_text_interpolation] = STATE(225), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(952), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [226] = { [sym_text_interpolation] = STATE(226), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(977), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(951), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [227] = { [sym_text_interpolation] = STATE(227), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1015), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(981), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [228] = { [sym_text_interpolation] = STATE(228), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(976), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1025), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [229] = { [sym_text_interpolation] = STATE(229), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(930), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(773), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [230] = { + [sym_text_interpolation] = STATE(230), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(925), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [230] = { - [sym_text_interpolation] = STATE(230), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(778), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [231] = { [sym_text_interpolation] = STATE(231), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1042), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1003), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), + }, + [232] = { + [sym_text_interpolation] = STATE(232), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1074), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [232] = { - [sym_text_interpolation] = STATE(232), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [233] = { [sym_text_interpolation] = STATE(233), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(973), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(983), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [234] = { [sym_text_interpolation] = STATE(234), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(972), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(976), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [235] = { [sym_text_interpolation] = STATE(235), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1051), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [236] = { [sym_text_interpolation] = STATE(236), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(858), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(866), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [237] = { [sym_text_interpolation] = STATE(237), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(986), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(999), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [238] = { [sym_text_interpolation] = STATE(238), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(971), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1029), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [239] = { [sym_text_interpolation] = STATE(239), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1047), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(996), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [240] = { [sym_text_interpolation] = STATE(240), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(969), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(977), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [241] = { [sym_text_interpolation] = STATE(241), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(966), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(836), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [242] = { [sym_text_interpolation] = STATE(242), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1034), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [243] = { - [sym_text_interpolation] = STATE(243), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(842), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(837), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [244] = { - [sym_text_interpolation] = STATE(244), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(832), + [243] = { + [sym_text_interpolation] = STATE(243), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(839), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [245] = { - [sym_text_interpolation] = STATE(245), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1008), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [244] = { + [sym_text_interpolation] = STATE(244), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(876), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), + }, + [245] = { + [sym_text_interpolation] = STATE(245), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(970), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [246] = { [sym_text_interpolation] = STATE(246), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(833), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [247] = { [sym_text_interpolation] = STATE(247), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(838), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(809), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [248] = { [sym_text_interpolation] = STATE(248), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(968), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(966), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [249] = { [sym_text_interpolation] = STATE(249), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(818), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(826), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [250] = { [sym_text_interpolation] = STATE(250), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(924), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [251] = { [sym_text_interpolation] = STATE(251), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [252] = { - [sym_text_interpolation] = STATE(252), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(791), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1071), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [252] = { + [sym_text_interpolation] = STATE(252), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(842), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [253] = { [sym_text_interpolation] = STATE(253), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(800), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1034), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [254] = { [sym_text_interpolation] = STATE(254), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(965), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(972), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [255] = { [sym_text_interpolation] = STATE(255), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(967), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(978), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [256] = { [sym_text_interpolation] = STATE(256), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1080), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1043), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [257] = { [sym_text_interpolation] = STATE(257), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1077), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1062), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [258] = { [sym_text_interpolation] = STATE(258), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1068), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(858), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [259] = { [sym_text_interpolation] = STATE(259), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1036), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(963), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [260] = { [sym_text_interpolation] = STATE(260), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(964), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(853), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [261] = { [sym_text_interpolation] = STATE(261), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1090), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(849), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [262] = { [sym_text_interpolation] = STATE(262), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1087), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1046), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [263] = { [sym_text_interpolation] = STATE(263), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1089), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1087), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [264] = { [sym_text_interpolation] = STATE(264), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(816), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(820), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [265] = { [sym_text_interpolation] = STATE(265), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(815), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(819), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [266] = { [sym_text_interpolation] = STATE(266), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1044), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1094), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [267] = { [sym_text_interpolation] = STATE(267), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(848), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1058), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [268] = { [sym_text_interpolation] = STATE(268), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(864), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(871), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [269] = { [sym_text_interpolation] = STATE(269), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1043), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1093), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [270] = { [sym_text_interpolation] = STATE(270), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(849), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(810), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [271] = { + [sym_text_interpolation] = STATE(271), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(863), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [271] = { - [sym_text_interpolation] = STATE(271), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(871), + [272] = { + [sym_text_interpolation] = STATE(272), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(857), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [272] = { - [sym_text_interpolation] = STATE(272), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1091), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [273] = { [sym_text_interpolation] = STATE(273), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(931), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [274] = { - [sym_text_interpolation] = STATE(274), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(870), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(843), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [274] = { + [sym_text_interpolation] = STATE(274), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1089), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [275] = { [sym_text_interpolation] = STATE(275), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(869), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(841), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [276] = { [sym_text_interpolation] = STATE(276), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(868), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(854), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [277] = { [sym_text_interpolation] = STATE(277), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1085), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1088), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [278] = { [sym_text_interpolation] = STATE(278), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(872), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(848), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [279] = { [sym_text_interpolation] = STATE(279), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1075), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1078), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [280] = { [sym_text_interpolation] = STATE(280), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1093), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [281] = { - [sym_text_interpolation] = STATE(281), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(839), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(845), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [282] = { - [sym_text_interpolation] = STATE(282), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(867), + [281] = { + [sym_text_interpolation] = STATE(281), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1040), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [282] = { + [sym_text_interpolation] = STATE(282), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(955), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [283] = { [sym_text_interpolation] = STATE(283), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(917), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(953), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [284] = { [sym_text_interpolation] = STATE(284), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(916), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [285] = { [sym_text_interpolation] = STATE(285), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(915), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(948), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [286] = { [sym_text_interpolation] = STATE(286), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1077), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [287] = { [sym_text_interpolation] = STATE(287), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [288] = { - [sym_text_interpolation] = STATE(288), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(914), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1005), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), + }, + [288] = { + [sym_text_interpolation] = STATE(288), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1032), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [289] = { [sym_text_interpolation] = STATE(289), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(866), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(844), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [290] = { [sym_text_interpolation] = STATE(290), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [291] = { - [sym_text_interpolation] = STATE(291), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(863), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(832), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [291] = { + [sym_text_interpolation] = STATE(291), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(815), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [292] = { [sym_text_interpolation] = STATE(292), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(919), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1066), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [293] = { [sym_text_interpolation] = STATE(293), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(906), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(931), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [294] = { [sym_text_interpolation] = STATE(294), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(859), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(872), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [295] = { [sym_text_interpolation] = STATE(295), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1038), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(869), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [296] = { [sym_text_interpolation] = STATE(296), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1072), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [297] = { - [sym_text_interpolation] = STATE(297), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(940), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(916), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, - [298] = { - [sym_text_interpolation] = STATE(298), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(827), + [297] = { + [sym_text_interpolation] = STATE(297), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(817), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [298] = { + [sym_text_interpolation] = STATE(298), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1016), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [299] = { [sym_text_interpolation] = STATE(299), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1000), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(807), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [300] = { [sym_text_interpolation] = STATE(300), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [301] = { - [sym_text_interpolation] = STATE(301), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(909), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [302] = { - [sym_text_interpolation] = STATE(302), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(799), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(825), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [303] = { - [sym_text_interpolation] = STATE(303), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1046), + [301] = { + [sym_text_interpolation] = STATE(301), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1073), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [302] = { + [sym_text_interpolation] = STATE(302), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(873), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), + }, + [303] = { + [sym_text_interpolation] = STATE(303), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [304] = { [sym_text_interpolation] = STATE(304), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1033), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(971), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [305] = { [sym_text_interpolation] = STATE(305), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1092), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1059), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [306] = { [sym_text_interpolation] = STATE(306), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(939), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [307] = { [sym_text_interpolation] = STATE(307), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(998), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1065), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [308] = { [sym_text_interpolation] = STATE(308), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1066), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1055), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [309] = { [sym_text_interpolation] = STATE(309), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1063), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1054), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [310] = { [sym_text_interpolation] = STATE(310), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1061), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(945), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), + }, + [311] = { + [sym_text_interpolation] = STATE(311), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(864), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [312] = { + [sym_text_interpolation] = STATE(312), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1057), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [311] = { - [sym_text_interpolation] = STATE(311), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1051), + [313] = { + [sym_text_interpolation] = STATE(313), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1049), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [312] = { - [sym_text_interpolation] = STATE(312), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(857), + [314] = { + [sym_text_interpolation] = STATE(314), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(828), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [313] = { - [sym_text_interpolation] = STATE(313), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(856), + [315] = { + [sym_text_interpolation] = STATE(315), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(942), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), + }, + [316] = { + [sym_text_interpolation] = STATE(316), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(835), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [314] = { - [sym_text_interpolation] = STATE(314), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(891), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [317] = { + [sym_text_interpolation] = STATE(317), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(940), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, - [315] = { - [sym_text_interpolation] = STATE(315), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(844), + [318] = { + [sym_text_interpolation] = STATE(318), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(923), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), + }, + [319] = { + [sym_text_interpolation] = STATE(319), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(968), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [320] = { + [sym_text_interpolation] = STATE(320), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(877), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), + }, + [321] = { + [sym_text_interpolation] = STATE(321), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(850), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [316] = { - [sym_text_interpolation] = STATE(316), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(778), + [322] = { + [sym_text_interpolation] = STATE(322), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(962), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [323] = { + [sym_text_interpolation] = STATE(323), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(847), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [317] = { - [sym_text_interpolation] = STATE(317), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(962), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [318] = { - [sym_text_interpolation] = STATE(318), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(806), + [324] = { + [sym_text_interpolation] = STATE(324), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1050), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [319] = { - [sym_text_interpolation] = STATE(319), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(798), + [325] = { + [sym_text_interpolation] = STATE(325), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [326] = { + [sym_text_interpolation] = STATE(326), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1053), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [320] = { - [sym_text_interpolation] = STATE(320), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1009), + [327] = { + [sym_text_interpolation] = STATE(327), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(870), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [321] = { - [sym_text_interpolation] = STATE(321), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(831), + [328] = { + [sym_text_interpolation] = STATE(328), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1011), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [322] = { - [sym_text_interpolation] = STATE(322), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(850), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [323] = { - [sym_text_interpolation] = STATE(323), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(886), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [324] = { - [sym_text_interpolation] = STATE(324), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(970), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [325] = { - [sym_text_interpolation] = STATE(325), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(883), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [326] = { - [sym_text_interpolation] = STATE(326), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(989), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [327] = { - [sym_text_interpolation] = STATE(327), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(846), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [328] = { - [sym_text_interpolation] = STATE(328), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(778), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [329] = { [sym_text_interpolation] = STATE(329), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1055), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1045), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [330] = { [sym_text_interpolation] = STATE(330), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(829), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1075), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [331] = { [sym_text_interpolation] = STATE(331), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1053), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(773), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [332] = { [sym_text_interpolation] = STATE(332), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(843), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(868), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [333] = { [sym_text_interpolation] = STATE(333), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [334] = { - [sym_text_interpolation] = STATE(334), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1050), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [335] = { - [sym_text_interpolation] = STATE(335), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(840), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(867), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [336] = { - [sym_text_interpolation] = STATE(336), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(837), + [334] = { + [sym_text_interpolation] = STATE(334), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(865), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [335] = { + [sym_text_interpolation] = STATE(335), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(791), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [336] = { + [sym_text_interpolation] = STATE(336), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(984), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [337] = { [sym_text_interpolation] = STATE(337), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1084), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(792), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [338] = { [sym_text_interpolation] = STATE(338), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [339] = { - [sym_text_interpolation] = STATE(339), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1065), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1079), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [339] = { + [sym_text_interpolation] = STATE(339), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(861), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [340] = { [sym_text_interpolation] = STATE(340), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1073), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1064), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [341] = { [sym_text_interpolation] = STATE(341), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1060), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1042), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [342] = { [sym_text_interpolation] = STATE(342), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(836), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(860), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [343] = { [sym_text_interpolation] = STATE(343), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(835), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(855), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [344] = { [sym_text_interpolation] = STATE(344), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(834), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [345] = { - [sym_text_interpolation] = STATE(345), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(790), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(793), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [346] = { - [sym_text_interpolation] = STATE(346), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(830), + [345] = { + [sym_text_interpolation] = STATE(345), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(846), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [346] = { + [sym_text_interpolation] = STATE(346), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(979), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [347] = { [sym_text_interpolation] = STATE(347), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(995), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(998), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [348] = { [sym_text_interpolation] = STATE(348), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(987), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(982), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [349] = { [sym_text_interpolation] = STATE(349), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1062), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(980), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [350] = { + [sym_text_interpolation] = STATE(350), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1060), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [350] = { - [sym_text_interpolation] = STATE(350), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(980), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [351] = { [sym_text_interpolation] = STATE(351), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(982), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1024), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [352] = { [sym_text_interpolation] = STATE(352), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1076), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1081), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [353] = { [sym_text_interpolation] = STATE(353), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1030), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1082), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [354] = { [sym_text_interpolation] = STATE(354), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1069), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(595), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(595), - [sym_nullsafe_member_access_expression] = STATE(595), - [sym_scoped_property_access_expression] = STATE(595), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1711), - [sym_function_call_expression] = STATE(569), - [sym_scoped_call_expression] = STATE(569), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(569), - [sym_nullsafe_member_call_expression] = STATE(569), - [sym_subscript_expression] = STATE(569), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(569), - [sym_variable_name] = STATE(569), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(758), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [355] = { - [sym_text_interpolation] = STATE(355), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1045), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1091), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [355] = { + [sym_text_interpolation] = STATE(355), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1048), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1688), + [sym_function_call_expression] = STATE(579), + [sym_scoped_call_expression] = STATE(579), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(579), + [sym_nullsafe_member_call_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(579), + [sym_variable_name] = STATE(579), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [356] = { [sym_text_interpolation] = STATE(356), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(841), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(852), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), [sym_member_access_expression] = STATE(586), [sym_nullsafe_member_access_expression] = STATE(586), [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(553), [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(553), [sym_nullsafe_member_call_expression] = STATE(553), [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(553), [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [357] = { [sym_text_interpolation] = STATE(357), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1094), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1052), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [358] = { [sym_text_interpolation] = STATE(358), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(821), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1069), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [359] = { [sym_text_interpolation] = STATE(359), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1064), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(788), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [360] = { [sym_text_interpolation] = STATE(360), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(828), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(967), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [361] = { [sym_text_interpolation] = STATE(361), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(785), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1015), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [362] = { [sym_text_interpolation] = STATE(362), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1024), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(821), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [363] = { [sym_text_interpolation] = STATE(363), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(997), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(973), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [364] = { [sym_text_interpolation] = STATE(364), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(824), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(751), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [365] = { [sym_text_interpolation] = STATE(365), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1067), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(818), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [366] = { [sym_text_interpolation] = STATE(366), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(805), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(964), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [367] = { + [sym_text_interpolation] = STATE(367), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(814), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), - }, - [367] = { - [sym_text_interpolation] = STATE(367), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(993), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [368] = { [sym_text_interpolation] = STATE(368), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(804), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1090), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [369] = { [sym_text_interpolation] = STATE(369), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(820), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(813), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [370] = { [sym_text_interpolation] = STATE(370), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(826), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(812), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [371] = { [sym_text_interpolation] = STATE(371), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(789), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(811), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [372] = { [sym_text_interpolation] = STATE(372), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1071), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1080), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [373] = { [sym_text_interpolation] = STATE(373), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(963), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1086), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(551), + [sym_scoped_call_expression] = STATE(551), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(551), + [sym_nullsafe_member_call_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(551), + [sym_variable_name] = STATE(551), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [374] = { [sym_text_interpolation] = STATE(374), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1001), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(986), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [375] = { [sym_text_interpolation] = STATE(375), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1074), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(751), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [376] = { [sym_text_interpolation] = STATE(376), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(785), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1023), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1992), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(553), + [sym_scoped_call_expression] = STATE(553), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(553), + [sym_nullsafe_member_call_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(553), + [sym_variable_name] = STATE(553), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(619), + [aux_sym_include_expression_token1] = ACTIONS(623), + [aux_sym_include_once_expression_token1] = ACTIONS(625), + [aux_sym_require_expression_token1] = ACTIONS(627), + [aux_sym_require_once_expression_token1] = ACTIONS(629), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [377] = { [sym_text_interpolation] = STATE(377), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1054), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(974), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [378] = { + [sym_text_interpolation] = STATE(378), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(794), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [378] = { - [sym_text_interpolation] = STATE(378), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(796), + [379] = { + [sym_text_interpolation] = STATE(379), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1076), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, - [379] = { - [sym_text_interpolation] = STATE(379), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(911), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [380] = { + [sym_text_interpolation] = STATE(380), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(928), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [380] = { - [sym_text_interpolation] = STATE(380), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1029), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2003), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(553), - [sym_scoped_call_expression] = STATE(553), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(553), - [sym_nullsafe_member_call_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(553), - [sym_variable_name] = STATE(553), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(614), - [aux_sym_include_expression_token1] = ACTIONS(618), - [aux_sym_include_once_expression_token1] = ACTIONS(620), - [aux_sym_require_expression_token1] = ACTIONS(622), - [aux_sym_require_once_expression_token1] = ACTIONS(624), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [381] = { [sym_text_interpolation] = STATE(381), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(988), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1000), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [382] = { [sym_text_interpolation] = STATE(382), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(985), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(995), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [383] = { [sym_text_interpolation] = STATE(383), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(984), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(994), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(601), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(601), - [sym_nullsafe_member_access_expression] = STATE(601), - [sym_scoped_property_access_expression] = STATE(601), - [sym_list_literal] = STATE(1964), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(660), - [aux_sym_include_expression_token1] = ACTIONS(664), - [aux_sym_include_once_expression_token1] = ACTIONS(666), - [aux_sym_require_expression_token1] = ACTIONS(668), - [aux_sym_require_once_expression_token1] = ACTIONS(670), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [384] = { [sym_text_interpolation] = STATE(384), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1057), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(827), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [385] = { [sym_text_interpolation] = STATE(385), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(934), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(992), + [sym__unary_expression] = STATE(755), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(1969), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(663), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(665), + [aux_sym_include_expression_token1] = ACTIONS(669), + [aux_sym_include_once_expression_token1] = ACTIONS(671), + [aux_sym_require_expression_token1] = ACTIONS(673), + [aux_sym_require_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [386] = { + [sym_text_interpolation] = STATE(386), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(878), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [386] = { - [sym_text_interpolation] = STATE(386), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [387] = { [sym_text_interpolation] = STATE(387), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(949), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(921), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [388] = { [sym_text_interpolation] = STATE(388), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(794), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(795), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [389] = { [sym_text_interpolation] = STATE(389), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(935), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(888), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(568), [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(568), [sym_nullsafe_member_call_expression] = STATE(568), [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), [sym_dynamic_variable_name] = STATE(568), [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [390] = { [sym_text_interpolation] = STATE(390), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(793), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(796), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [391] = { [sym_text_interpolation] = STATE(391), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(788), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(1070), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [392] = { [sym_text_interpolation] = STATE(392), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(812), - [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(551), - [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(551), - [sym_nullsafe_member_call_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(551), - [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(883), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [393] = { [sym_text_interpolation] = STATE(393), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(1058), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(797), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [394] = { [sym_text_interpolation] = STATE(394), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(811), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(806), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [395] = { [sym_text_interpolation] = STATE(395), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(810), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(805), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [396] = { [sym_text_interpolation] = STATE(396), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(809), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(804), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [397] = { [sym_text_interpolation] = STATE(397), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(808), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(803), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [398] = { [sym_text_interpolation] = STATE(398), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(807), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(802), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [399] = { [sym_text_interpolation] = STATE(399), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(803), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(801), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [400] = { [sym_text_interpolation] = STATE(400), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(802), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(799), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [401] = { [sym_text_interpolation] = STATE(401), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym_match_expression] = STATE(955), - [sym__expression] = STATE(908), - [sym__unary_expression] = STATE(951), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(591), - [sym_assignment_expression] = STATE(955), - [sym_conditional_expression] = STATE(955), - [sym_augmented_assignment_expression] = STATE(955), - [sym_member_access_expression] = STATE(591), - [sym_nullsafe_member_access_expression] = STATE(591), - [sym_scoped_property_access_expression] = STATE(591), - [sym_list_literal] = STATE(1951), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), - [sym_function_call_expression] = STATE(568), - [sym_scoped_call_expression] = STATE(568), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(568), - [sym_nullsafe_member_call_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(568), - [sym_variable_name] = STATE(568), - [sym_yield_expression] = STATE(955), - [sym_binary_expression] = STATE(955), - [sym_include_expression] = STATE(955), - [sym_include_once_expression] = STATE(955), - [sym_require_expression] = STATE(955), - [sym_require_once_expression] = STATE(955), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [aux_sym_match_expression_token1] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_yield] = ACTIONS(283), - [aux_sym_include_expression_token1] = ACTIONS(285), - [aux_sym_include_once_expression_token1] = ACTIONS(287), - [aux_sym_require_expression_token1] = ACTIONS(289), - [aux_sym_require_once_expression_token1] = ACTIONS(291), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), - }, - [402] = { - [sym_text_interpolation] = STATE(402), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(797), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(829), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), + }, + [402] = { + [sym_text_interpolation] = STATE(402), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(927), + [sym__unary_expression] = STATE(893), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(592), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(592), + [sym_nullsafe_member_access_expression] = STATE(592), + [sym_scoped_property_access_expression] = STATE(592), + [sym_list_literal] = STATE(1954), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), + [sym_function_call_expression] = STATE(568), + [sym_scoped_call_expression] = STATE(568), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(568), + [sym_nullsafe_member_call_expression] = STATE(568), + [sym_subscript_expression] = STATE(568), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(568), + [sym_variable_name] = STATE(568), + [sym_yield_expression] = STATE(898), + [sym_binary_expression] = STATE(898), + [sym_include_expression] = STATE(898), + [sym_include_once_expression] = STATE(898), + [sym_require_expression] = STATE(898), + [sym_require_once_expression] = STATE(898), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [aux_sym_match_expression_token1] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(288), + [aux_sym_include_expression_token1] = ACTIONS(290), + [aux_sym_include_once_expression_token1] = ACTIONS(292), + [aux_sym_require_expression_token1] = ACTIONS(294), + [aux_sym_require_once_expression_token1] = ACTIONS(296), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [403] = { [sym_text_interpolation] = STATE(403), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym_match_expression] = STATE(748), - [sym__expression] = STATE(801), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym_match_expression] = STATE(763), + [sym__expression] = STATE(798), [sym__unary_expression] = STATE(755), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(557), - [sym_assignment_expression] = STATE(748), - [sym_conditional_expression] = STATE(748), - [sym_augmented_assignment_expression] = STATE(748), - [sym_member_access_expression] = STATE(557), - [sym_nullsafe_member_access_expression] = STATE(557), - [sym_scoped_property_access_expression] = STATE(557), - [sym_list_literal] = STATE(2015), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(1925), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(561), + [sym_assignment_expression] = STATE(763), + [sym_conditional_expression] = STATE(763), + [sym_augmented_assignment_expression] = STATE(763), + [sym_member_access_expression] = STATE(561), + [sym_nullsafe_member_access_expression] = STATE(561), + [sym_scoped_property_access_expression] = STATE(561), + [sym_list_literal] = STATE(2086), + [sym__list_destructing] = STATE(1927), + [sym__array_destructing] = STATE(1927), [sym_function_call_expression] = STATE(551), [sym_scoped_call_expression] = STATE(551), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), [sym_member_call_expression] = STATE(551), [sym_nullsafe_member_call_expression] = STATE(551), [sym_subscript_expression] = STATE(551), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), [sym_dynamic_variable_name] = STATE(551), [sym_variable_name] = STATE(551), - [sym_yield_expression] = STATE(748), - [sym_binary_expression] = STATE(748), - [sym_include_expression] = STATE(748), - [sym_include_once_expression] = STATE(748), - [sym_require_expression] = STATE(748), - [sym_require_once_expression] = STATE(748), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [aux_sym_match_expression_token1] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(578), - [aux_sym_include_expression_token1] = ACTIONS(582), - [aux_sym_include_once_expression_token1] = ACTIONS(584), - [aux_sym_require_expression_token1] = ACTIONS(586), - [aux_sym_require_once_expression_token1] = ACTIONS(588), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_yield_expression] = STATE(763), + [sym_binary_expression] = STATE(763), + [sym_include_expression] = STATE(763), + [sym_include_once_expression] = STATE(763), + [sym_require_expression] = STATE(763), + [sym_require_once_expression] = STATE(763), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [aux_sym_match_expression_token1] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_list] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(583), + [aux_sym_include_expression_token1] = ACTIONS(587), + [aux_sym_include_once_expression_token1] = ACTIONS(589), + [aux_sym_require_expression_token1] = ACTIONS(591), + [aux_sym_require_once_expression_token1] = ACTIONS(593), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [404] = { [sym_text_interpolation] = STATE(404), [sym_catch_clause] = STATE(410), [sym_finally_clause] = STATE(410), - [aux_sym_try_statement_repeat1] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(854), - [sym_name] = ACTIONS(856), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(854), - [aux_sym_function_static_declaration_token1] = ACTIONS(856), - [aux_sym_global_declaration_token1] = ACTIONS(856), - [aux_sym_namespace_definition_token1] = ACTIONS(856), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(856), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(856), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(856), - [anon_sym_BSLASH] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(854), - [aux_sym_trait_declaration_token1] = ACTIONS(856), - [aux_sym_interface_declaration_token1] = ACTIONS(856), - [aux_sym_class_declaration_token1] = ACTIONS(856), - [aux_sym_class_modifier_token1] = ACTIONS(856), - [aux_sym_class_modifier_token2] = ACTIONS(856), - [aux_sym_visibility_modifier_token1] = ACTIONS(856), - [aux_sym_visibility_modifier_token2] = ACTIONS(856), - [aux_sym_visibility_modifier_token3] = ACTIONS(856), - [aux_sym_arrow_function_token1] = ACTIONS(856), - [anon_sym_LPAREN] = ACTIONS(854), - [anon_sym_array] = ACTIONS(856), - [anon_sym_unset] = ACTIONS(856), - [aux_sym_echo_statement_token1] = ACTIONS(856), - [anon_sym_declare] = ACTIONS(856), - [aux_sym_declare_statement_token1] = ACTIONS(856), - [sym_float] = ACTIONS(856), - [aux_sym_try_statement_token1] = ACTIONS(856), - [aux_sym_catch_clause_token1] = ACTIONS(858), - [aux_sym_finally_clause_token1] = ACTIONS(861), - [aux_sym_goto_statement_token1] = ACTIONS(856), - [aux_sym_continue_statement_token1] = ACTIONS(856), - [aux_sym_break_statement_token1] = ACTIONS(856), - [sym_integer] = ACTIONS(856), - [aux_sym_return_statement_token1] = ACTIONS(856), - [aux_sym_throw_expression_token1] = ACTIONS(856), - [aux_sym_while_statement_token1] = ACTIONS(856), - [aux_sym_while_statement_token2] = ACTIONS(856), - [aux_sym_do_statement_token1] = ACTIONS(856), - [aux_sym_for_statement_token1] = ACTIONS(856), - [aux_sym_for_statement_token2] = ACTIONS(856), - [aux_sym_foreach_statement_token1] = ACTIONS(856), - [aux_sym_foreach_statement_token2] = ACTIONS(856), - [aux_sym_if_statement_token1] = ACTIONS(856), - [aux_sym_if_statement_token2] = ACTIONS(856), - [aux_sym_else_if_clause_token1] = ACTIONS(856), - [aux_sym_else_clause_token1] = ACTIONS(856), - [aux_sym_match_expression_token1] = ACTIONS(856), - [aux_sym_match_default_expression_token1] = ACTIONS(856), - [aux_sym_switch_statement_token1] = ACTIONS(856), - [aux_sym_switch_block_token1] = ACTIONS(856), - [aux_sym_case_statement_token1] = ACTIONS(856), - [anon_sym_AT] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(856), - [anon_sym_DASH] = ACTIONS(856), - [anon_sym_TILDE] = ACTIONS(854), - [anon_sym_BANG] = ACTIONS(854), - [anon_sym_clone] = ACTIONS(856), - [anon_sym_print] = ACTIONS(856), - [anon_sym_new] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(854), - [anon_sym_DASH_DASH] = ACTIONS(854), - [sym_shell_command_expression] = ACTIONS(854), - [anon_sym_list] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_self] = ACTIONS(856), - [anon_sym_parent] = ACTIONS(856), - [anon_sym_POUND_LBRACK] = ACTIONS(854), - [sym_string] = ACTIONS(854), - [sym_boolean] = ACTIONS(856), - [sym_null] = ACTIONS(856), - [anon_sym_DOLLAR] = ACTIONS(854), - [anon_sym_yield] = ACTIONS(856), - [aux_sym_include_expression_token1] = ACTIONS(856), - [aux_sym_include_once_expression_token1] = ACTIONS(856), - [aux_sym_require_expression_token1] = ACTIONS(856), - [aux_sym_require_once_expression_token1] = ACTIONS(856), + [aux_sym_try_statement_repeat1] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(859), + [sym_name] = ACTIONS(861), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(859), + [aux_sym_function_static_declaration_token1] = ACTIONS(861), + [aux_sym_global_declaration_token1] = ACTIONS(861), + [aux_sym_namespace_definition_token1] = ACTIONS(861), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(861), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(861), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(861), + [anon_sym_BSLASH] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [aux_sym_trait_declaration_token1] = ACTIONS(861), + [aux_sym_interface_declaration_token1] = ACTIONS(861), + [aux_sym_class_declaration_token1] = ACTIONS(861), + [aux_sym_final_modifier_token1] = ACTIONS(861), + [aux_sym_abstract_modifier_token1] = ACTIONS(861), + [aux_sym_visibility_modifier_token1] = ACTIONS(861), + [aux_sym_visibility_modifier_token2] = ACTIONS(861), + [aux_sym_visibility_modifier_token3] = ACTIONS(861), + [aux_sym_arrow_function_token1] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_array] = ACTIONS(861), + [anon_sym_unset] = ACTIONS(861), + [aux_sym_echo_statement_token1] = ACTIONS(861), + [anon_sym_declare] = ACTIONS(861), + [aux_sym_declare_statement_token1] = ACTIONS(861), + [sym_float] = ACTIONS(861), + [aux_sym_try_statement_token1] = ACTIONS(861), + [aux_sym_catch_clause_token1] = ACTIONS(863), + [aux_sym_finally_clause_token1] = ACTIONS(865), + [aux_sym_goto_statement_token1] = ACTIONS(861), + [aux_sym_continue_statement_token1] = ACTIONS(861), + [aux_sym_break_statement_token1] = ACTIONS(861), + [sym_integer] = ACTIONS(861), + [aux_sym_return_statement_token1] = ACTIONS(861), + [aux_sym_throw_expression_token1] = ACTIONS(861), + [aux_sym_while_statement_token1] = ACTIONS(861), + [aux_sym_while_statement_token2] = ACTIONS(861), + [aux_sym_do_statement_token1] = ACTIONS(861), + [aux_sym_for_statement_token1] = ACTIONS(861), + [aux_sym_for_statement_token2] = ACTIONS(861), + [aux_sym_foreach_statement_token1] = ACTIONS(861), + [aux_sym_foreach_statement_token2] = ACTIONS(861), + [aux_sym_if_statement_token1] = ACTIONS(861), + [aux_sym_if_statement_token2] = ACTIONS(861), + [aux_sym_else_if_clause_token1] = ACTIONS(861), + [aux_sym_else_clause_token1] = ACTIONS(861), + [aux_sym_match_expression_token1] = ACTIONS(861), + [aux_sym_match_default_expression_token1] = ACTIONS(861), + [aux_sym_switch_statement_token1] = ACTIONS(861), + [aux_sym_switch_block_token1] = ACTIONS(861), + [aux_sym_case_statement_token1] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_clone] = ACTIONS(861), + [anon_sym_print] = ACTIONS(861), + [anon_sym_new] = ACTIONS(861), + [anon_sym_PLUS_PLUS] = ACTIONS(859), + [anon_sym_DASH_DASH] = ACTIONS(859), + [sym_shell_command_expression] = ACTIONS(859), + [anon_sym_list] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_self] = ACTIONS(861), + [anon_sym_parent] = ACTIONS(861), + [anon_sym_POUND_LBRACK] = ACTIONS(859), + [sym_string] = ACTIONS(859), + [sym_boolean] = ACTIONS(861), + [sym_null] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_yield] = ACTIONS(861), + [aux_sym_include_expression_token1] = ACTIONS(861), + [aux_sym_include_once_expression_token1] = ACTIONS(861), + [aux_sym_require_expression_token1] = ACTIONS(861), + [aux_sym_require_once_expression_token1] = ACTIONS(861), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(854), + [sym_heredoc] = ACTIONS(859), }, [405] = { [sym_text_interpolation] = STATE(405), [sym_catch_clause] = STATE(410), [sym_finally_clause] = STATE(410), - [aux_sym_try_statement_repeat1] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(864), - [sym_name] = ACTIONS(866), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(864), - [aux_sym_function_static_declaration_token1] = ACTIONS(866), - [aux_sym_global_declaration_token1] = ACTIONS(866), - [aux_sym_namespace_definition_token1] = ACTIONS(866), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(866), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(866), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(866), - [anon_sym_BSLASH] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(864), - [aux_sym_trait_declaration_token1] = ACTIONS(866), - [aux_sym_interface_declaration_token1] = ACTIONS(866), - [aux_sym_class_declaration_token1] = ACTIONS(866), - [aux_sym_class_modifier_token1] = ACTIONS(866), - [aux_sym_class_modifier_token2] = ACTIONS(866), - [aux_sym_visibility_modifier_token1] = ACTIONS(866), - [aux_sym_visibility_modifier_token2] = ACTIONS(866), - [aux_sym_visibility_modifier_token3] = ACTIONS(866), - [aux_sym_arrow_function_token1] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_array] = ACTIONS(866), - [anon_sym_unset] = ACTIONS(866), - [aux_sym_echo_statement_token1] = ACTIONS(866), - [anon_sym_declare] = ACTIONS(866), - [aux_sym_declare_statement_token1] = ACTIONS(866), - [sym_float] = ACTIONS(866), - [aux_sym_try_statement_token1] = ACTIONS(866), - [aux_sym_catch_clause_token1] = ACTIONS(868), - [aux_sym_finally_clause_token1] = ACTIONS(870), - [aux_sym_goto_statement_token1] = ACTIONS(866), - [aux_sym_continue_statement_token1] = ACTIONS(866), - [aux_sym_break_statement_token1] = ACTIONS(866), - [sym_integer] = ACTIONS(866), - [aux_sym_return_statement_token1] = ACTIONS(866), - [aux_sym_throw_expression_token1] = ACTIONS(866), - [aux_sym_while_statement_token1] = ACTIONS(866), - [aux_sym_while_statement_token2] = ACTIONS(866), - [aux_sym_do_statement_token1] = ACTIONS(866), - [aux_sym_for_statement_token1] = ACTIONS(866), - [aux_sym_for_statement_token2] = ACTIONS(866), - [aux_sym_foreach_statement_token1] = ACTIONS(866), - [aux_sym_foreach_statement_token2] = ACTIONS(866), - [aux_sym_if_statement_token1] = ACTIONS(866), - [aux_sym_if_statement_token2] = ACTIONS(866), - [aux_sym_else_if_clause_token1] = ACTIONS(866), - [aux_sym_else_clause_token1] = ACTIONS(866), - [aux_sym_match_expression_token1] = ACTIONS(866), - [aux_sym_match_default_expression_token1] = ACTIONS(866), - [aux_sym_switch_statement_token1] = ACTIONS(866), - [aux_sym_switch_block_token1] = ACTIONS(866), - [aux_sym_case_statement_token1] = ACTIONS(866), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(866), - [anon_sym_DASH] = ACTIONS(866), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_clone] = ACTIONS(866), - [anon_sym_print] = ACTIONS(866), - [anon_sym_new] = ACTIONS(866), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [sym_shell_command_expression] = ACTIONS(864), - [anon_sym_list] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_self] = ACTIONS(866), - [anon_sym_parent] = ACTIONS(866), - [anon_sym_POUND_LBRACK] = ACTIONS(864), - [sym_string] = ACTIONS(864), - [sym_boolean] = ACTIONS(866), - [sym_null] = ACTIONS(866), - [anon_sym_DOLLAR] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(866), - [aux_sym_include_expression_token1] = ACTIONS(866), - [aux_sym_include_once_expression_token1] = ACTIONS(866), - [aux_sym_require_expression_token1] = ACTIONS(866), - [aux_sym_require_once_expression_token1] = ACTIONS(866), + [aux_sym_try_statement_repeat1] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(867), + [sym_name] = ACTIONS(869), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(867), + [aux_sym_function_static_declaration_token1] = ACTIONS(869), + [aux_sym_global_declaration_token1] = ACTIONS(869), + [aux_sym_namespace_definition_token1] = ACTIONS(869), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(869), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(869), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(869), + [anon_sym_BSLASH] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [aux_sym_trait_declaration_token1] = ACTIONS(869), + [aux_sym_interface_declaration_token1] = ACTIONS(869), + [aux_sym_class_declaration_token1] = ACTIONS(869), + [aux_sym_final_modifier_token1] = ACTIONS(869), + [aux_sym_abstract_modifier_token1] = ACTIONS(869), + [aux_sym_visibility_modifier_token1] = ACTIONS(869), + [aux_sym_visibility_modifier_token2] = ACTIONS(869), + [aux_sym_visibility_modifier_token3] = ACTIONS(869), + [aux_sym_arrow_function_token1] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_array] = ACTIONS(869), + [anon_sym_unset] = ACTIONS(869), + [aux_sym_echo_statement_token1] = ACTIONS(869), + [anon_sym_declare] = ACTIONS(869), + [aux_sym_declare_statement_token1] = ACTIONS(869), + [sym_float] = ACTIONS(869), + [aux_sym_try_statement_token1] = ACTIONS(869), + [aux_sym_catch_clause_token1] = ACTIONS(871), + [aux_sym_finally_clause_token1] = ACTIONS(874), + [aux_sym_goto_statement_token1] = ACTIONS(869), + [aux_sym_continue_statement_token1] = ACTIONS(869), + [aux_sym_break_statement_token1] = ACTIONS(869), + [sym_integer] = ACTIONS(869), + [aux_sym_return_statement_token1] = ACTIONS(869), + [aux_sym_throw_expression_token1] = ACTIONS(869), + [aux_sym_while_statement_token1] = ACTIONS(869), + [aux_sym_while_statement_token2] = ACTIONS(869), + [aux_sym_do_statement_token1] = ACTIONS(869), + [aux_sym_for_statement_token1] = ACTIONS(869), + [aux_sym_for_statement_token2] = ACTIONS(869), + [aux_sym_foreach_statement_token1] = ACTIONS(869), + [aux_sym_foreach_statement_token2] = ACTIONS(869), + [aux_sym_if_statement_token1] = ACTIONS(869), + [aux_sym_if_statement_token2] = ACTIONS(869), + [aux_sym_else_if_clause_token1] = ACTIONS(869), + [aux_sym_else_clause_token1] = ACTIONS(869), + [aux_sym_match_expression_token1] = ACTIONS(869), + [aux_sym_match_default_expression_token1] = ACTIONS(869), + [aux_sym_switch_statement_token1] = ACTIONS(869), + [aux_sym_switch_block_token1] = ACTIONS(869), + [aux_sym_case_statement_token1] = ACTIONS(869), + [anon_sym_AT] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(869), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_clone] = ACTIONS(869), + [anon_sym_print] = ACTIONS(869), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(867), + [anon_sym_DASH_DASH] = ACTIONS(867), + [sym_shell_command_expression] = ACTIONS(867), + [anon_sym_list] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_self] = ACTIONS(869), + [anon_sym_parent] = ACTIONS(869), + [anon_sym_POUND_LBRACK] = ACTIONS(867), + [sym_string] = ACTIONS(867), + [sym_boolean] = ACTIONS(869), + [sym_null] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_yield] = ACTIONS(869), + [aux_sym_include_expression_token1] = ACTIONS(869), + [aux_sym_include_once_expression_token1] = ACTIONS(869), + [aux_sym_require_expression_token1] = ACTIONS(869), + [aux_sym_require_once_expression_token1] = ACTIONS(869), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(864), + [sym_heredoc] = ACTIONS(867), }, [406] = { [sym_text_interpolation] = STATE(406), - [sym_else_if_clause] = STATE(521), - [sym_else_clause] = STATE(445), - [aux_sym_if_statement_repeat1] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(872), - [sym_name] = ACTIONS(874), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(872), - [aux_sym_function_static_declaration_token1] = ACTIONS(874), - [aux_sym_global_declaration_token1] = ACTIONS(874), - [aux_sym_namespace_definition_token1] = ACTIONS(874), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(874), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(874), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(874), - [anon_sym_BSLASH] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_RBRACE] = ACTIONS(872), - [aux_sym_trait_declaration_token1] = ACTIONS(874), - [aux_sym_interface_declaration_token1] = ACTIONS(874), - [aux_sym_class_declaration_token1] = ACTIONS(874), - [aux_sym_class_modifier_token1] = ACTIONS(874), - [aux_sym_class_modifier_token2] = ACTIONS(874), - [aux_sym_visibility_modifier_token1] = ACTIONS(874), - [aux_sym_visibility_modifier_token2] = ACTIONS(874), - [aux_sym_visibility_modifier_token3] = ACTIONS(874), - [aux_sym_arrow_function_token1] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_array] = ACTIONS(874), - [anon_sym_unset] = ACTIONS(874), - [aux_sym_echo_statement_token1] = ACTIONS(874), - [anon_sym_declare] = ACTIONS(874), - [aux_sym_declare_statement_token1] = ACTIONS(874), - [sym_float] = ACTIONS(874), - [aux_sym_try_statement_token1] = ACTIONS(874), - [aux_sym_goto_statement_token1] = ACTIONS(874), - [aux_sym_continue_statement_token1] = ACTIONS(874), - [aux_sym_break_statement_token1] = ACTIONS(874), - [sym_integer] = ACTIONS(874), - [aux_sym_return_statement_token1] = ACTIONS(874), - [aux_sym_throw_expression_token1] = ACTIONS(874), - [aux_sym_while_statement_token1] = ACTIONS(874), - [aux_sym_while_statement_token2] = ACTIONS(874), - [aux_sym_do_statement_token1] = ACTIONS(874), - [aux_sym_for_statement_token1] = ACTIONS(874), - [aux_sym_for_statement_token2] = ACTIONS(874), - [aux_sym_foreach_statement_token1] = ACTIONS(874), - [aux_sym_foreach_statement_token2] = ACTIONS(874), - [aux_sym_if_statement_token1] = ACTIONS(874), - [aux_sym_if_statement_token2] = ACTIONS(874), - [aux_sym_else_if_clause_token1] = ACTIONS(876), - [aux_sym_else_clause_token1] = ACTIONS(879), - [aux_sym_match_expression_token1] = ACTIONS(874), - [aux_sym_match_default_expression_token1] = ACTIONS(874), - [aux_sym_switch_statement_token1] = ACTIONS(874), - [aux_sym_switch_block_token1] = ACTIONS(874), - [aux_sym_case_statement_token1] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_clone] = ACTIONS(874), - [anon_sym_print] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(872), - [sym_shell_command_expression] = ACTIONS(872), - [anon_sym_list] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_self] = ACTIONS(874), - [anon_sym_parent] = ACTIONS(874), - [anon_sym_POUND_LBRACK] = ACTIONS(872), - [sym_string] = ACTIONS(872), - [sym_boolean] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [aux_sym_include_expression_token1] = ACTIONS(874), - [aux_sym_include_once_expression_token1] = ACTIONS(874), - [aux_sym_require_expression_token1] = ACTIONS(874), - [aux_sym_require_once_expression_token1] = ACTIONS(874), + [sym_else_if_clause] = STATE(522), + [sym_else_clause] = STATE(442), + [aux_sym_if_statement_repeat1] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(877), + [sym_name] = ACTIONS(879), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(877), + [aux_sym_function_static_declaration_token1] = ACTIONS(879), + [aux_sym_global_declaration_token1] = ACTIONS(879), + [aux_sym_namespace_definition_token1] = ACTIONS(879), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(879), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(879), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [aux_sym_trait_declaration_token1] = ACTIONS(879), + [aux_sym_interface_declaration_token1] = ACTIONS(879), + [aux_sym_class_declaration_token1] = ACTIONS(879), + [aux_sym_final_modifier_token1] = ACTIONS(879), + [aux_sym_abstract_modifier_token1] = ACTIONS(879), + [aux_sym_visibility_modifier_token1] = ACTIONS(879), + [aux_sym_visibility_modifier_token2] = ACTIONS(879), + [aux_sym_visibility_modifier_token3] = ACTIONS(879), + [aux_sym_arrow_function_token1] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_array] = ACTIONS(879), + [anon_sym_unset] = ACTIONS(879), + [aux_sym_echo_statement_token1] = ACTIONS(879), + [anon_sym_declare] = ACTIONS(879), + [aux_sym_declare_statement_token1] = ACTIONS(879), + [sym_float] = ACTIONS(879), + [aux_sym_try_statement_token1] = ACTIONS(879), + [aux_sym_goto_statement_token1] = ACTIONS(879), + [aux_sym_continue_statement_token1] = ACTIONS(879), + [aux_sym_break_statement_token1] = ACTIONS(879), + [sym_integer] = ACTIONS(879), + [aux_sym_return_statement_token1] = ACTIONS(879), + [aux_sym_throw_expression_token1] = ACTIONS(879), + [aux_sym_while_statement_token1] = ACTIONS(879), + [aux_sym_while_statement_token2] = ACTIONS(879), + [aux_sym_do_statement_token1] = ACTIONS(879), + [aux_sym_for_statement_token1] = ACTIONS(879), + [aux_sym_for_statement_token2] = ACTIONS(879), + [aux_sym_foreach_statement_token1] = ACTIONS(879), + [aux_sym_foreach_statement_token2] = ACTIONS(879), + [aux_sym_if_statement_token1] = ACTIONS(879), + [aux_sym_if_statement_token2] = ACTIONS(879), + [aux_sym_else_if_clause_token1] = ACTIONS(881), + [aux_sym_else_clause_token1] = ACTIONS(884), + [aux_sym_match_expression_token1] = ACTIONS(879), + [aux_sym_match_default_expression_token1] = ACTIONS(879), + [aux_sym_switch_statement_token1] = ACTIONS(879), + [aux_sym_switch_block_token1] = ACTIONS(879), + [aux_sym_case_statement_token1] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(879), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_clone] = ACTIONS(879), + [anon_sym_print] = ACTIONS(879), + [anon_sym_new] = ACTIONS(879), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [sym_shell_command_expression] = ACTIONS(877), + [anon_sym_list] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_self] = ACTIONS(879), + [anon_sym_parent] = ACTIONS(879), + [anon_sym_POUND_LBRACK] = ACTIONS(877), + [sym_string] = ACTIONS(877), + [sym_boolean] = ACTIONS(879), + [sym_null] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_yield] = ACTIONS(879), + [aux_sym_include_expression_token1] = ACTIONS(879), + [aux_sym_include_once_expression_token1] = ACTIONS(879), + [aux_sym_require_expression_token1] = ACTIONS(879), + [aux_sym_require_once_expression_token1] = ACTIONS(879), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(872), + [sym_heredoc] = ACTIONS(877), }, [407] = { [sym_text_interpolation] = STATE(407), - [sym_else_if_clause] = STATE(521), - [sym_else_clause] = STATE(445), - [aux_sym_if_statement_repeat1] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(872), - [sym_name] = ACTIONS(874), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(872), - [aux_sym_function_static_declaration_token1] = ACTIONS(874), - [aux_sym_global_declaration_token1] = ACTIONS(874), - [aux_sym_namespace_definition_token1] = ACTIONS(874), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(874), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(874), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(874), - [anon_sym_BSLASH] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_RBRACE] = ACTIONS(872), - [aux_sym_trait_declaration_token1] = ACTIONS(874), - [aux_sym_interface_declaration_token1] = ACTIONS(874), - [aux_sym_class_declaration_token1] = ACTIONS(874), - [aux_sym_class_modifier_token1] = ACTIONS(874), - [aux_sym_class_modifier_token2] = ACTIONS(874), - [aux_sym_visibility_modifier_token1] = ACTIONS(874), - [aux_sym_visibility_modifier_token2] = ACTIONS(874), - [aux_sym_visibility_modifier_token3] = ACTIONS(874), - [aux_sym_arrow_function_token1] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_array] = ACTIONS(874), - [anon_sym_unset] = ACTIONS(874), - [aux_sym_echo_statement_token1] = ACTIONS(874), - [anon_sym_declare] = ACTIONS(874), - [aux_sym_declare_statement_token1] = ACTIONS(874), - [sym_float] = ACTIONS(874), - [aux_sym_try_statement_token1] = ACTIONS(874), - [aux_sym_goto_statement_token1] = ACTIONS(874), - [aux_sym_continue_statement_token1] = ACTIONS(874), - [aux_sym_break_statement_token1] = ACTIONS(874), - [sym_integer] = ACTIONS(874), - [aux_sym_return_statement_token1] = ACTIONS(874), - [aux_sym_throw_expression_token1] = ACTIONS(874), - [aux_sym_while_statement_token1] = ACTIONS(874), - [aux_sym_while_statement_token2] = ACTIONS(874), - [aux_sym_do_statement_token1] = ACTIONS(874), - [aux_sym_for_statement_token1] = ACTIONS(874), - [aux_sym_for_statement_token2] = ACTIONS(874), - [aux_sym_foreach_statement_token1] = ACTIONS(874), - [aux_sym_foreach_statement_token2] = ACTIONS(874), - [aux_sym_if_statement_token1] = ACTIONS(874), - [aux_sym_if_statement_token2] = ACTIONS(874), - [aux_sym_else_if_clause_token1] = ACTIONS(882), - [aux_sym_else_clause_token1] = ACTIONS(884), - [aux_sym_match_expression_token1] = ACTIONS(874), - [aux_sym_match_default_expression_token1] = ACTIONS(874), - [aux_sym_switch_statement_token1] = ACTIONS(874), - [aux_sym_switch_block_token1] = ACTIONS(874), - [aux_sym_case_statement_token1] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_clone] = ACTIONS(874), - [anon_sym_print] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_DASH_DASH] = ACTIONS(872), - [sym_shell_command_expression] = ACTIONS(872), - [anon_sym_list] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_self] = ACTIONS(874), - [anon_sym_parent] = ACTIONS(874), - [anon_sym_POUND_LBRACK] = ACTIONS(872), - [sym_string] = ACTIONS(872), - [sym_boolean] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [aux_sym_include_expression_token1] = ACTIONS(874), - [aux_sym_include_once_expression_token1] = ACTIONS(874), - [aux_sym_require_expression_token1] = ACTIONS(874), - [aux_sym_require_once_expression_token1] = ACTIONS(874), + [sym_else_if_clause] = STATE(522), + [sym_else_clause] = STATE(521), + [aux_sym_if_statement_repeat1] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(887), + [sym_name] = ACTIONS(889), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(887), + [aux_sym_function_static_declaration_token1] = ACTIONS(889), + [aux_sym_global_declaration_token1] = ACTIONS(889), + [aux_sym_namespace_definition_token1] = ACTIONS(889), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(889), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(889), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(889), + [anon_sym_BSLASH] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [aux_sym_trait_declaration_token1] = ACTIONS(889), + [aux_sym_interface_declaration_token1] = ACTIONS(889), + [aux_sym_class_declaration_token1] = ACTIONS(889), + [aux_sym_final_modifier_token1] = ACTIONS(889), + [aux_sym_abstract_modifier_token1] = ACTIONS(889), + [aux_sym_visibility_modifier_token1] = ACTIONS(889), + [aux_sym_visibility_modifier_token2] = ACTIONS(889), + [aux_sym_visibility_modifier_token3] = ACTIONS(889), + [aux_sym_arrow_function_token1] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_array] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(889), + [aux_sym_echo_statement_token1] = ACTIONS(889), + [anon_sym_declare] = ACTIONS(889), + [aux_sym_declare_statement_token1] = ACTIONS(889), + [sym_float] = ACTIONS(889), + [aux_sym_try_statement_token1] = ACTIONS(889), + [aux_sym_goto_statement_token1] = ACTIONS(889), + [aux_sym_continue_statement_token1] = ACTIONS(889), + [aux_sym_break_statement_token1] = ACTIONS(889), + [sym_integer] = ACTIONS(889), + [aux_sym_return_statement_token1] = ACTIONS(889), + [aux_sym_throw_expression_token1] = ACTIONS(889), + [aux_sym_while_statement_token1] = ACTIONS(889), + [aux_sym_while_statement_token2] = ACTIONS(889), + [aux_sym_do_statement_token1] = ACTIONS(889), + [aux_sym_for_statement_token1] = ACTIONS(889), + [aux_sym_for_statement_token2] = ACTIONS(889), + [aux_sym_foreach_statement_token1] = ACTIONS(889), + [aux_sym_foreach_statement_token2] = ACTIONS(889), + [aux_sym_if_statement_token1] = ACTIONS(889), + [aux_sym_if_statement_token2] = ACTIONS(889), + [aux_sym_else_if_clause_token1] = ACTIONS(891), + [aux_sym_else_clause_token1] = ACTIONS(894), + [aux_sym_match_expression_token1] = ACTIONS(889), + [aux_sym_match_default_expression_token1] = ACTIONS(889), + [aux_sym_switch_statement_token1] = ACTIONS(889), + [aux_sym_switch_block_token1] = ACTIONS(889), + [aux_sym_case_statement_token1] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(887), + [anon_sym_clone] = ACTIONS(889), + [anon_sym_print] = ACTIONS(889), + [anon_sym_new] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(887), + [anon_sym_DASH_DASH] = ACTIONS(887), + [sym_shell_command_expression] = ACTIONS(887), + [anon_sym_list] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_self] = ACTIONS(889), + [anon_sym_parent] = ACTIONS(889), + [anon_sym_POUND_LBRACK] = ACTIONS(887), + [sym_string] = ACTIONS(887), + [sym_boolean] = ACTIONS(889), + [sym_null] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [aux_sym_include_expression_token1] = ACTIONS(889), + [aux_sym_include_once_expression_token1] = ACTIONS(889), + [aux_sym_require_expression_token1] = ACTIONS(889), + [aux_sym_require_once_expression_token1] = ACTIONS(889), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(872), + [sym_heredoc] = ACTIONS(887), }, [408] = { [sym_text_interpolation] = STATE(408), - [sym_else_if_clause] = STATE(521), - [sym_else_clause] = STATE(522), - [aux_sym_if_statement_repeat1] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(886), - [sym_name] = ACTIONS(888), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(886), - [aux_sym_function_static_declaration_token1] = ACTIONS(888), - [aux_sym_global_declaration_token1] = ACTIONS(888), - [aux_sym_namespace_definition_token1] = ACTIONS(888), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(888), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(888), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(888), - [anon_sym_BSLASH] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [aux_sym_trait_declaration_token1] = ACTIONS(888), - [aux_sym_interface_declaration_token1] = ACTIONS(888), - [aux_sym_class_declaration_token1] = ACTIONS(888), - [aux_sym_class_modifier_token1] = ACTIONS(888), - [aux_sym_class_modifier_token2] = ACTIONS(888), - [aux_sym_visibility_modifier_token1] = ACTIONS(888), - [aux_sym_visibility_modifier_token2] = ACTIONS(888), - [aux_sym_visibility_modifier_token3] = ACTIONS(888), - [aux_sym_arrow_function_token1] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_array] = ACTIONS(888), - [anon_sym_unset] = ACTIONS(888), - [aux_sym_echo_statement_token1] = ACTIONS(888), - [anon_sym_declare] = ACTIONS(888), - [aux_sym_declare_statement_token1] = ACTIONS(888), - [sym_float] = ACTIONS(888), - [aux_sym_try_statement_token1] = ACTIONS(888), - [aux_sym_goto_statement_token1] = ACTIONS(888), - [aux_sym_continue_statement_token1] = ACTIONS(888), - [aux_sym_break_statement_token1] = ACTIONS(888), - [sym_integer] = ACTIONS(888), - [aux_sym_return_statement_token1] = ACTIONS(888), - [aux_sym_throw_expression_token1] = ACTIONS(888), - [aux_sym_while_statement_token1] = ACTIONS(888), - [aux_sym_while_statement_token2] = ACTIONS(888), - [aux_sym_do_statement_token1] = ACTIONS(888), - [aux_sym_for_statement_token1] = ACTIONS(888), - [aux_sym_for_statement_token2] = ACTIONS(888), - [aux_sym_foreach_statement_token1] = ACTIONS(888), - [aux_sym_foreach_statement_token2] = ACTIONS(888), - [aux_sym_if_statement_token1] = ACTIONS(888), - [aux_sym_if_statement_token2] = ACTIONS(888), - [aux_sym_else_if_clause_token1] = ACTIONS(882), - [aux_sym_else_clause_token1] = ACTIONS(884), - [aux_sym_match_expression_token1] = ACTIONS(888), - [aux_sym_match_default_expression_token1] = ACTIONS(888), - [aux_sym_switch_statement_token1] = ACTIONS(888), - [aux_sym_switch_block_token1] = ACTIONS(888), - [aux_sym_case_statement_token1] = ACTIONS(888), - [anon_sym_AT] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_clone] = ACTIONS(888), - [anon_sym_print] = ACTIONS(888), - [anon_sym_new] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_DASH_DASH] = ACTIONS(886), - [sym_shell_command_expression] = ACTIONS(886), - [anon_sym_list] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_self] = ACTIONS(888), - [anon_sym_parent] = ACTIONS(888), - [anon_sym_POUND_LBRACK] = ACTIONS(886), - [sym_string] = ACTIONS(886), - [sym_boolean] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [anon_sym_DOLLAR] = ACTIONS(886), - [anon_sym_yield] = ACTIONS(888), - [aux_sym_include_expression_token1] = ACTIONS(888), - [aux_sym_include_once_expression_token1] = ACTIONS(888), - [aux_sym_require_expression_token1] = ACTIONS(888), - [aux_sym_require_once_expression_token1] = ACTIONS(888), + [sym_else_if_clause] = STATE(522), + [sym_else_clause] = STATE(521), + [aux_sym_if_statement_repeat1] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(887), + [sym_name] = ACTIONS(889), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(887), + [aux_sym_function_static_declaration_token1] = ACTIONS(889), + [aux_sym_global_declaration_token1] = ACTIONS(889), + [aux_sym_namespace_definition_token1] = ACTIONS(889), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(889), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(889), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(889), + [anon_sym_BSLASH] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [aux_sym_trait_declaration_token1] = ACTIONS(889), + [aux_sym_interface_declaration_token1] = ACTIONS(889), + [aux_sym_class_declaration_token1] = ACTIONS(889), + [aux_sym_final_modifier_token1] = ACTIONS(889), + [aux_sym_abstract_modifier_token1] = ACTIONS(889), + [aux_sym_visibility_modifier_token1] = ACTIONS(889), + [aux_sym_visibility_modifier_token2] = ACTIONS(889), + [aux_sym_visibility_modifier_token3] = ACTIONS(889), + [aux_sym_arrow_function_token1] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_array] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(889), + [aux_sym_echo_statement_token1] = ACTIONS(889), + [anon_sym_declare] = ACTIONS(889), + [aux_sym_declare_statement_token1] = ACTIONS(889), + [sym_float] = ACTIONS(889), + [aux_sym_try_statement_token1] = ACTIONS(889), + [aux_sym_goto_statement_token1] = ACTIONS(889), + [aux_sym_continue_statement_token1] = ACTIONS(889), + [aux_sym_break_statement_token1] = ACTIONS(889), + [sym_integer] = ACTIONS(889), + [aux_sym_return_statement_token1] = ACTIONS(889), + [aux_sym_throw_expression_token1] = ACTIONS(889), + [aux_sym_while_statement_token1] = ACTIONS(889), + [aux_sym_while_statement_token2] = ACTIONS(889), + [aux_sym_do_statement_token1] = ACTIONS(889), + [aux_sym_for_statement_token1] = ACTIONS(889), + [aux_sym_for_statement_token2] = ACTIONS(889), + [aux_sym_foreach_statement_token1] = ACTIONS(889), + [aux_sym_foreach_statement_token2] = ACTIONS(889), + [aux_sym_if_statement_token1] = ACTIONS(889), + [aux_sym_if_statement_token2] = ACTIONS(889), + [aux_sym_else_if_clause_token1] = ACTIONS(897), + [aux_sym_else_clause_token1] = ACTIONS(899), + [aux_sym_match_expression_token1] = ACTIONS(889), + [aux_sym_match_default_expression_token1] = ACTIONS(889), + [aux_sym_switch_statement_token1] = ACTIONS(889), + [aux_sym_switch_block_token1] = ACTIONS(889), + [aux_sym_case_statement_token1] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(887), + [anon_sym_clone] = ACTIONS(889), + [anon_sym_print] = ACTIONS(889), + [anon_sym_new] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(887), + [anon_sym_DASH_DASH] = ACTIONS(887), + [sym_shell_command_expression] = ACTIONS(887), + [anon_sym_list] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_self] = ACTIONS(889), + [anon_sym_parent] = ACTIONS(889), + [anon_sym_POUND_LBRACK] = ACTIONS(887), + [sym_string] = ACTIONS(887), + [sym_boolean] = ACTIONS(889), + [sym_null] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [aux_sym_include_expression_token1] = ACTIONS(889), + [aux_sym_include_once_expression_token1] = ACTIONS(889), + [aux_sym_require_expression_token1] = ACTIONS(889), + [aux_sym_require_once_expression_token1] = ACTIONS(889), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(886), + [sym_heredoc] = ACTIONS(887), }, [409] = { [sym_text_interpolation] = STATE(409), - [sym_else_if_clause] = STATE(521), - [sym_else_clause] = STATE(522), - [aux_sym_if_statement_repeat1] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(886), - [sym_name] = ACTIONS(888), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(886), - [aux_sym_function_static_declaration_token1] = ACTIONS(888), - [aux_sym_global_declaration_token1] = ACTIONS(888), - [aux_sym_namespace_definition_token1] = ACTIONS(888), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(888), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(888), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(888), - [anon_sym_BSLASH] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [aux_sym_trait_declaration_token1] = ACTIONS(888), - [aux_sym_interface_declaration_token1] = ACTIONS(888), - [aux_sym_class_declaration_token1] = ACTIONS(888), - [aux_sym_class_modifier_token1] = ACTIONS(888), - [aux_sym_class_modifier_token2] = ACTIONS(888), - [aux_sym_visibility_modifier_token1] = ACTIONS(888), - [aux_sym_visibility_modifier_token2] = ACTIONS(888), - [aux_sym_visibility_modifier_token3] = ACTIONS(888), - [aux_sym_arrow_function_token1] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_array] = ACTIONS(888), - [anon_sym_unset] = ACTIONS(888), - [aux_sym_echo_statement_token1] = ACTIONS(888), - [anon_sym_declare] = ACTIONS(888), - [aux_sym_declare_statement_token1] = ACTIONS(888), - [sym_float] = ACTIONS(888), - [aux_sym_try_statement_token1] = ACTIONS(888), - [aux_sym_goto_statement_token1] = ACTIONS(888), - [aux_sym_continue_statement_token1] = ACTIONS(888), - [aux_sym_break_statement_token1] = ACTIONS(888), - [sym_integer] = ACTIONS(888), - [aux_sym_return_statement_token1] = ACTIONS(888), - [aux_sym_throw_expression_token1] = ACTIONS(888), - [aux_sym_while_statement_token1] = ACTIONS(888), - [aux_sym_while_statement_token2] = ACTIONS(888), - [aux_sym_do_statement_token1] = ACTIONS(888), - [aux_sym_for_statement_token1] = ACTIONS(888), - [aux_sym_for_statement_token2] = ACTIONS(888), - [aux_sym_foreach_statement_token1] = ACTIONS(888), - [aux_sym_foreach_statement_token2] = ACTIONS(888), - [aux_sym_if_statement_token1] = ACTIONS(888), - [aux_sym_if_statement_token2] = ACTIONS(888), - [aux_sym_else_if_clause_token1] = ACTIONS(890), - [aux_sym_else_clause_token1] = ACTIONS(893), - [aux_sym_match_expression_token1] = ACTIONS(888), - [aux_sym_match_default_expression_token1] = ACTIONS(888), - [aux_sym_switch_statement_token1] = ACTIONS(888), - [aux_sym_switch_block_token1] = ACTIONS(888), - [aux_sym_case_statement_token1] = ACTIONS(888), - [anon_sym_AT] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_clone] = ACTIONS(888), - [anon_sym_print] = ACTIONS(888), - [anon_sym_new] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_DASH_DASH] = ACTIONS(886), - [sym_shell_command_expression] = ACTIONS(886), - [anon_sym_list] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_self] = ACTIONS(888), - [anon_sym_parent] = ACTIONS(888), - [anon_sym_POUND_LBRACK] = ACTIONS(886), - [sym_string] = ACTIONS(886), - [sym_boolean] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [anon_sym_DOLLAR] = ACTIONS(886), - [anon_sym_yield] = ACTIONS(888), - [aux_sym_include_expression_token1] = ACTIONS(888), - [aux_sym_include_once_expression_token1] = ACTIONS(888), - [aux_sym_require_expression_token1] = ACTIONS(888), - [aux_sym_require_once_expression_token1] = ACTIONS(888), + [sym_else_if_clause] = STATE(522), + [sym_else_clause] = STATE(442), + [aux_sym_if_statement_repeat1] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(877), + [sym_name] = ACTIONS(879), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(877), + [aux_sym_function_static_declaration_token1] = ACTIONS(879), + [aux_sym_global_declaration_token1] = ACTIONS(879), + [aux_sym_namespace_definition_token1] = ACTIONS(879), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(879), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(879), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [aux_sym_trait_declaration_token1] = ACTIONS(879), + [aux_sym_interface_declaration_token1] = ACTIONS(879), + [aux_sym_class_declaration_token1] = ACTIONS(879), + [aux_sym_final_modifier_token1] = ACTIONS(879), + [aux_sym_abstract_modifier_token1] = ACTIONS(879), + [aux_sym_visibility_modifier_token1] = ACTIONS(879), + [aux_sym_visibility_modifier_token2] = ACTIONS(879), + [aux_sym_visibility_modifier_token3] = ACTIONS(879), + [aux_sym_arrow_function_token1] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_array] = ACTIONS(879), + [anon_sym_unset] = ACTIONS(879), + [aux_sym_echo_statement_token1] = ACTIONS(879), + [anon_sym_declare] = ACTIONS(879), + [aux_sym_declare_statement_token1] = ACTIONS(879), + [sym_float] = ACTIONS(879), + [aux_sym_try_statement_token1] = ACTIONS(879), + [aux_sym_goto_statement_token1] = ACTIONS(879), + [aux_sym_continue_statement_token1] = ACTIONS(879), + [aux_sym_break_statement_token1] = ACTIONS(879), + [sym_integer] = ACTIONS(879), + [aux_sym_return_statement_token1] = ACTIONS(879), + [aux_sym_throw_expression_token1] = ACTIONS(879), + [aux_sym_while_statement_token1] = ACTIONS(879), + [aux_sym_while_statement_token2] = ACTIONS(879), + [aux_sym_do_statement_token1] = ACTIONS(879), + [aux_sym_for_statement_token1] = ACTIONS(879), + [aux_sym_for_statement_token2] = ACTIONS(879), + [aux_sym_foreach_statement_token1] = ACTIONS(879), + [aux_sym_foreach_statement_token2] = ACTIONS(879), + [aux_sym_if_statement_token1] = ACTIONS(879), + [aux_sym_if_statement_token2] = ACTIONS(879), + [aux_sym_else_if_clause_token1] = ACTIONS(897), + [aux_sym_else_clause_token1] = ACTIONS(899), + [aux_sym_match_expression_token1] = ACTIONS(879), + [aux_sym_match_default_expression_token1] = ACTIONS(879), + [aux_sym_switch_statement_token1] = ACTIONS(879), + [aux_sym_switch_block_token1] = ACTIONS(879), + [aux_sym_case_statement_token1] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(879), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_clone] = ACTIONS(879), + [anon_sym_print] = ACTIONS(879), + [anon_sym_new] = ACTIONS(879), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [sym_shell_command_expression] = ACTIONS(877), + [anon_sym_list] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_self] = ACTIONS(879), + [anon_sym_parent] = ACTIONS(879), + [anon_sym_POUND_LBRACK] = ACTIONS(877), + [sym_string] = ACTIONS(877), + [sym_boolean] = ACTIONS(879), + [sym_null] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_yield] = ACTIONS(879), + [aux_sym_include_expression_token1] = ACTIONS(879), + [aux_sym_include_once_expression_token1] = ACTIONS(879), + [aux_sym_require_expression_token1] = ACTIONS(879), + [aux_sym_require_once_expression_token1] = ACTIONS(879), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(886), + [sym_heredoc] = ACTIONS(877), }, [410] = { [sym_text_interpolation] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(896), - [sym_name] = ACTIONS(898), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(896), - [aux_sym_function_static_declaration_token1] = ACTIONS(898), - [aux_sym_global_declaration_token1] = ACTIONS(898), - [aux_sym_namespace_definition_token1] = ACTIONS(898), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(898), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(898), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(898), - [anon_sym_BSLASH] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [aux_sym_trait_declaration_token1] = ACTIONS(898), - [aux_sym_interface_declaration_token1] = ACTIONS(898), - [aux_sym_class_declaration_token1] = ACTIONS(898), - [aux_sym_class_modifier_token1] = ACTIONS(898), - [aux_sym_class_modifier_token2] = ACTIONS(898), - [aux_sym_visibility_modifier_token1] = ACTIONS(898), - [aux_sym_visibility_modifier_token2] = ACTIONS(898), - [aux_sym_visibility_modifier_token3] = ACTIONS(898), - [aux_sym_arrow_function_token1] = ACTIONS(898), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_array] = ACTIONS(898), - [anon_sym_unset] = ACTIONS(898), - [aux_sym_echo_statement_token1] = ACTIONS(898), - [anon_sym_declare] = ACTIONS(898), - [aux_sym_declare_statement_token1] = ACTIONS(898), - [sym_float] = ACTIONS(898), - [aux_sym_try_statement_token1] = ACTIONS(898), - [aux_sym_catch_clause_token1] = ACTIONS(898), - [aux_sym_finally_clause_token1] = ACTIONS(898), - [aux_sym_goto_statement_token1] = ACTIONS(898), - [aux_sym_continue_statement_token1] = ACTIONS(898), - [aux_sym_break_statement_token1] = ACTIONS(898), - [sym_integer] = ACTIONS(898), - [aux_sym_return_statement_token1] = ACTIONS(898), - [aux_sym_throw_expression_token1] = ACTIONS(898), - [aux_sym_while_statement_token1] = ACTIONS(898), - [aux_sym_while_statement_token2] = ACTIONS(898), - [aux_sym_do_statement_token1] = ACTIONS(898), - [aux_sym_for_statement_token1] = ACTIONS(898), - [aux_sym_for_statement_token2] = ACTIONS(898), - [aux_sym_foreach_statement_token1] = ACTIONS(898), - [aux_sym_foreach_statement_token2] = ACTIONS(898), - [aux_sym_if_statement_token1] = ACTIONS(898), - [aux_sym_if_statement_token2] = ACTIONS(898), - [aux_sym_else_if_clause_token1] = ACTIONS(898), - [aux_sym_else_clause_token1] = ACTIONS(898), - [aux_sym_match_expression_token1] = ACTIONS(898), - [aux_sym_match_default_expression_token1] = ACTIONS(898), - [aux_sym_switch_statement_token1] = ACTIONS(898), - [aux_sym_switch_block_token1] = ACTIONS(898), - [aux_sym_case_statement_token1] = ACTIONS(898), - [anon_sym_AT] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_clone] = ACTIONS(898), - [anon_sym_print] = ACTIONS(898), - [anon_sym_new] = ACTIONS(898), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(896), - [sym_shell_command_expression] = ACTIONS(896), - [anon_sym_list] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_self] = ACTIONS(898), - [anon_sym_parent] = ACTIONS(898), - [anon_sym_POUND_LBRACK] = ACTIONS(896), - [sym_string] = ACTIONS(896), - [sym_boolean] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [anon_sym_DOLLAR] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [aux_sym_include_expression_token1] = ACTIONS(898), - [aux_sym_include_once_expression_token1] = ACTIONS(898), - [aux_sym_require_expression_token1] = ACTIONS(898), - [aux_sym_require_once_expression_token1] = ACTIONS(898), + [ts_builtin_sym_end] = ACTIONS(901), + [sym_name] = ACTIONS(903), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(901), + [aux_sym_function_static_declaration_token1] = ACTIONS(903), + [aux_sym_global_declaration_token1] = ACTIONS(903), + [aux_sym_namespace_definition_token1] = ACTIONS(903), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(903), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(903), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(903), + [anon_sym_BSLASH] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [aux_sym_trait_declaration_token1] = ACTIONS(903), + [aux_sym_interface_declaration_token1] = ACTIONS(903), + [aux_sym_class_declaration_token1] = ACTIONS(903), + [aux_sym_final_modifier_token1] = ACTIONS(903), + [aux_sym_abstract_modifier_token1] = ACTIONS(903), + [aux_sym_visibility_modifier_token1] = ACTIONS(903), + [aux_sym_visibility_modifier_token2] = ACTIONS(903), + [aux_sym_visibility_modifier_token3] = ACTIONS(903), + [aux_sym_arrow_function_token1] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_array] = ACTIONS(903), + [anon_sym_unset] = ACTIONS(903), + [aux_sym_echo_statement_token1] = ACTIONS(903), + [anon_sym_declare] = ACTIONS(903), + [aux_sym_declare_statement_token1] = ACTIONS(903), + [sym_float] = ACTIONS(903), + [aux_sym_try_statement_token1] = ACTIONS(903), + [aux_sym_catch_clause_token1] = ACTIONS(903), + [aux_sym_finally_clause_token1] = ACTIONS(903), + [aux_sym_goto_statement_token1] = ACTIONS(903), + [aux_sym_continue_statement_token1] = ACTIONS(903), + [aux_sym_break_statement_token1] = ACTIONS(903), + [sym_integer] = ACTIONS(903), + [aux_sym_return_statement_token1] = ACTIONS(903), + [aux_sym_throw_expression_token1] = ACTIONS(903), + [aux_sym_while_statement_token1] = ACTIONS(903), + [aux_sym_while_statement_token2] = ACTIONS(903), + [aux_sym_do_statement_token1] = ACTIONS(903), + [aux_sym_for_statement_token1] = ACTIONS(903), + [aux_sym_for_statement_token2] = ACTIONS(903), + [aux_sym_foreach_statement_token1] = ACTIONS(903), + [aux_sym_foreach_statement_token2] = ACTIONS(903), + [aux_sym_if_statement_token1] = ACTIONS(903), + [aux_sym_if_statement_token2] = ACTIONS(903), + [aux_sym_else_if_clause_token1] = ACTIONS(903), + [aux_sym_else_clause_token1] = ACTIONS(903), + [aux_sym_match_expression_token1] = ACTIONS(903), + [aux_sym_match_default_expression_token1] = ACTIONS(903), + [aux_sym_switch_statement_token1] = ACTIONS(903), + [aux_sym_switch_block_token1] = ACTIONS(903), + [aux_sym_case_statement_token1] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_clone] = ACTIONS(903), + [anon_sym_print] = ACTIONS(903), + [anon_sym_new] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [sym_shell_command_expression] = ACTIONS(901), + [anon_sym_list] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_self] = ACTIONS(903), + [anon_sym_parent] = ACTIONS(903), + [anon_sym_POUND_LBRACK] = ACTIONS(901), + [sym_string] = ACTIONS(901), + [sym_boolean] = ACTIONS(903), + [sym_null] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(903), + [aux_sym_include_expression_token1] = ACTIONS(903), + [aux_sym_include_once_expression_token1] = ACTIONS(903), + [aux_sym_require_expression_token1] = ACTIONS(903), + [aux_sym_require_once_expression_token1] = ACTIONS(903), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(896), + [sym_heredoc] = ACTIONS(901), }, [411] = { [sym_text_interpolation] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(900), - [sym_name] = ACTIONS(902), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(900), - [aux_sym_function_static_declaration_token1] = ACTIONS(902), - [aux_sym_global_declaration_token1] = ACTIONS(902), - [aux_sym_namespace_definition_token1] = ACTIONS(902), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(902), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(902), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(902), - [anon_sym_BSLASH] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [aux_sym_trait_declaration_token1] = ACTIONS(902), - [aux_sym_interface_declaration_token1] = ACTIONS(902), - [aux_sym_class_declaration_token1] = ACTIONS(902), - [aux_sym_class_modifier_token1] = ACTIONS(902), - [aux_sym_class_modifier_token2] = ACTIONS(902), - [aux_sym_visibility_modifier_token1] = ACTIONS(902), - [aux_sym_visibility_modifier_token2] = ACTIONS(902), - [aux_sym_visibility_modifier_token3] = ACTIONS(902), - [aux_sym_arrow_function_token1] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(900), - [anon_sym_array] = ACTIONS(902), - [anon_sym_unset] = ACTIONS(902), - [aux_sym_echo_statement_token1] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [aux_sym_declare_statement_token1] = ACTIONS(902), - [sym_float] = ACTIONS(902), - [aux_sym_try_statement_token1] = ACTIONS(902), - [aux_sym_catch_clause_token1] = ACTIONS(902), - [aux_sym_finally_clause_token1] = ACTIONS(902), - [aux_sym_goto_statement_token1] = ACTIONS(902), - [aux_sym_continue_statement_token1] = ACTIONS(902), - [aux_sym_break_statement_token1] = ACTIONS(902), - [sym_integer] = ACTIONS(902), - [aux_sym_return_statement_token1] = ACTIONS(902), - [aux_sym_throw_expression_token1] = ACTIONS(902), - [aux_sym_while_statement_token1] = ACTIONS(902), - [aux_sym_while_statement_token2] = ACTIONS(902), - [aux_sym_do_statement_token1] = ACTIONS(902), - [aux_sym_for_statement_token1] = ACTIONS(902), - [aux_sym_for_statement_token2] = ACTIONS(902), - [aux_sym_foreach_statement_token1] = ACTIONS(902), - [aux_sym_foreach_statement_token2] = ACTIONS(902), - [aux_sym_if_statement_token1] = ACTIONS(902), - [aux_sym_if_statement_token2] = ACTIONS(902), - [aux_sym_else_if_clause_token1] = ACTIONS(902), - [aux_sym_else_clause_token1] = ACTIONS(902), - [aux_sym_match_expression_token1] = ACTIONS(902), - [aux_sym_match_default_expression_token1] = ACTIONS(902), - [aux_sym_switch_statement_token1] = ACTIONS(902), - [aux_sym_switch_block_token1] = ACTIONS(902), - [aux_sym_case_statement_token1] = ACTIONS(902), - [anon_sym_AT] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_clone] = ACTIONS(902), - [anon_sym_print] = ACTIONS(902), - [anon_sym_new] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(900), - [sym_shell_command_expression] = ACTIONS(900), - [anon_sym_list] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(900), - [anon_sym_self] = ACTIONS(902), - [anon_sym_parent] = ACTIONS(902), - [anon_sym_POUND_LBRACK] = ACTIONS(900), - [sym_string] = ACTIONS(900), - [sym_boolean] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_yield] = ACTIONS(902), - [aux_sym_include_expression_token1] = ACTIONS(902), - [aux_sym_include_once_expression_token1] = ACTIONS(902), - [aux_sym_require_expression_token1] = ACTIONS(902), - [aux_sym_require_once_expression_token1] = ACTIONS(902), + [ts_builtin_sym_end] = ACTIONS(905), + [sym_name] = ACTIONS(907), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(905), + [aux_sym_function_static_declaration_token1] = ACTIONS(907), + [aux_sym_global_declaration_token1] = ACTIONS(907), + [aux_sym_namespace_definition_token1] = ACTIONS(907), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(907), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(907), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(907), + [anon_sym_BSLASH] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [aux_sym_trait_declaration_token1] = ACTIONS(907), + [aux_sym_interface_declaration_token1] = ACTIONS(907), + [aux_sym_class_declaration_token1] = ACTIONS(907), + [aux_sym_final_modifier_token1] = ACTIONS(907), + [aux_sym_abstract_modifier_token1] = ACTIONS(907), + [aux_sym_visibility_modifier_token1] = ACTIONS(907), + [aux_sym_visibility_modifier_token2] = ACTIONS(907), + [aux_sym_visibility_modifier_token3] = ACTIONS(907), + [aux_sym_arrow_function_token1] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_array] = ACTIONS(907), + [anon_sym_unset] = ACTIONS(907), + [aux_sym_echo_statement_token1] = ACTIONS(907), + [anon_sym_declare] = ACTIONS(907), + [aux_sym_declare_statement_token1] = ACTIONS(907), + [sym_float] = ACTIONS(907), + [aux_sym_try_statement_token1] = ACTIONS(907), + [aux_sym_catch_clause_token1] = ACTIONS(907), + [aux_sym_finally_clause_token1] = ACTIONS(907), + [aux_sym_goto_statement_token1] = ACTIONS(907), + [aux_sym_continue_statement_token1] = ACTIONS(907), + [aux_sym_break_statement_token1] = ACTIONS(907), + [sym_integer] = ACTIONS(907), + [aux_sym_return_statement_token1] = ACTIONS(907), + [aux_sym_throw_expression_token1] = ACTIONS(907), + [aux_sym_while_statement_token1] = ACTIONS(907), + [aux_sym_while_statement_token2] = ACTIONS(907), + [aux_sym_do_statement_token1] = ACTIONS(907), + [aux_sym_for_statement_token1] = ACTIONS(907), + [aux_sym_for_statement_token2] = ACTIONS(907), + [aux_sym_foreach_statement_token1] = ACTIONS(907), + [aux_sym_foreach_statement_token2] = ACTIONS(907), + [aux_sym_if_statement_token1] = ACTIONS(907), + [aux_sym_if_statement_token2] = ACTIONS(907), + [aux_sym_else_if_clause_token1] = ACTIONS(907), + [aux_sym_else_clause_token1] = ACTIONS(907), + [aux_sym_match_expression_token1] = ACTIONS(907), + [aux_sym_match_default_expression_token1] = ACTIONS(907), + [aux_sym_switch_statement_token1] = ACTIONS(907), + [aux_sym_switch_block_token1] = ACTIONS(907), + [aux_sym_case_statement_token1] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_TILDE] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_clone] = ACTIONS(907), + [anon_sym_print] = ACTIONS(907), + [anon_sym_new] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [sym_shell_command_expression] = ACTIONS(905), + [anon_sym_list] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_self] = ACTIONS(907), + [anon_sym_parent] = ACTIONS(907), + [anon_sym_POUND_LBRACK] = ACTIONS(905), + [sym_string] = ACTIONS(905), + [sym_boolean] = ACTIONS(907), + [sym_null] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(907), + [aux_sym_include_expression_token1] = ACTIONS(907), + [aux_sym_include_once_expression_token1] = ACTIONS(907), + [aux_sym_require_expression_token1] = ACTIONS(907), + [aux_sym_require_once_expression_token1] = ACTIONS(907), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(900), + [sym_heredoc] = ACTIONS(905), }, [412] = { [sym_text_interpolation] = STATE(412), - [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_class_declaration_token1] = ACTIONS(906), - [aux_sym_class_modifier_token1] = ACTIONS(906), - [aux_sym_class_modifier_token2] = 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), - [anon_sym_array] = ACTIONS(906), - [anon_sym_unset] = ACTIONS(906), - [aux_sym_echo_statement_token1] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [aux_sym_declare_statement_token1] = ACTIONS(906), - [sym_float] = ACTIONS(906), - [aux_sym_try_statement_token1] = ACTIONS(906), - [aux_sym_catch_clause_token1] = ACTIONS(906), - [aux_sym_finally_clause_token1] = ACTIONS(906), - [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), - [aux_sym_case_statement_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), - [anon_sym_clone] = ACTIONS(906), - [anon_sym_print] = ACTIONS(906), - [anon_sym_new] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [sym_shell_command_expression] = ACTIONS(904), - [anon_sym_list] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_self] = ACTIONS(906), - [anon_sym_parent] = ACTIONS(906), - [anon_sym_POUND_LBRACK] = ACTIONS(904), - [sym_string] = ACTIONS(904), - [sym_boolean] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(904), - [anon_sym_yield] = 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), + [ts_builtin_sym_end] = ACTIONS(909), + [sym_name] = ACTIONS(911), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(909), + [aux_sym_function_static_declaration_token1] = ACTIONS(911), + [aux_sym_global_declaration_token1] = ACTIONS(911), + [aux_sym_namespace_definition_token1] = ACTIONS(911), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(911), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(911), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(911), + [anon_sym_BSLASH] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [aux_sym_trait_declaration_token1] = ACTIONS(911), + [aux_sym_interface_declaration_token1] = ACTIONS(911), + [aux_sym_class_declaration_token1] = ACTIONS(911), + [aux_sym_final_modifier_token1] = ACTIONS(911), + [aux_sym_abstract_modifier_token1] = ACTIONS(911), + [aux_sym_visibility_modifier_token1] = ACTIONS(911), + [aux_sym_visibility_modifier_token2] = ACTIONS(911), + [aux_sym_visibility_modifier_token3] = ACTIONS(911), + [aux_sym_arrow_function_token1] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_array] = ACTIONS(911), + [anon_sym_unset] = ACTIONS(911), + [aux_sym_echo_statement_token1] = ACTIONS(911), + [anon_sym_declare] = ACTIONS(911), + [aux_sym_declare_statement_token1] = ACTIONS(911), + [sym_float] = ACTIONS(911), + [aux_sym_try_statement_token1] = ACTIONS(911), + [aux_sym_catch_clause_token1] = ACTIONS(911), + [aux_sym_finally_clause_token1] = ACTIONS(911), + [aux_sym_goto_statement_token1] = ACTIONS(911), + [aux_sym_continue_statement_token1] = ACTIONS(911), + [aux_sym_break_statement_token1] = ACTIONS(911), + [sym_integer] = ACTIONS(911), + [aux_sym_return_statement_token1] = ACTIONS(911), + [aux_sym_throw_expression_token1] = ACTIONS(911), + [aux_sym_while_statement_token1] = ACTIONS(911), + [aux_sym_while_statement_token2] = ACTIONS(911), + [aux_sym_do_statement_token1] = ACTIONS(911), + [aux_sym_for_statement_token1] = ACTIONS(911), + [aux_sym_for_statement_token2] = ACTIONS(911), + [aux_sym_foreach_statement_token1] = ACTIONS(911), + [aux_sym_foreach_statement_token2] = ACTIONS(911), + [aux_sym_if_statement_token1] = ACTIONS(911), + [aux_sym_if_statement_token2] = ACTIONS(911), + [aux_sym_else_if_clause_token1] = ACTIONS(911), + [aux_sym_else_clause_token1] = ACTIONS(911), + [aux_sym_match_expression_token1] = ACTIONS(911), + [aux_sym_match_default_expression_token1] = ACTIONS(911), + [aux_sym_switch_statement_token1] = ACTIONS(911), + [aux_sym_switch_block_token1] = ACTIONS(911), + [aux_sym_case_statement_token1] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_clone] = ACTIONS(911), + [anon_sym_print] = ACTIONS(911), + [anon_sym_new] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [sym_shell_command_expression] = ACTIONS(909), + [anon_sym_list] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_self] = ACTIONS(911), + [anon_sym_parent] = ACTIONS(911), + [anon_sym_POUND_LBRACK] = ACTIONS(909), + [sym_string] = ACTIONS(909), + [sym_boolean] = ACTIONS(911), + [sym_null] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_yield] = ACTIONS(911), + [aux_sym_include_expression_token1] = ACTIONS(911), + [aux_sym_include_once_expression_token1] = ACTIONS(911), + [aux_sym_require_expression_token1] = ACTIONS(911), + [aux_sym_require_once_expression_token1] = ACTIONS(911), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(904), + [sym_heredoc] = ACTIONS(909), }, [413] = { [sym_text_interpolation] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(908), - [sym_name] = ACTIONS(910), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(908), - [aux_sym_function_static_declaration_token1] = ACTIONS(910), - [aux_sym_global_declaration_token1] = ACTIONS(910), - [aux_sym_namespace_definition_token1] = ACTIONS(910), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(910), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(910), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(910), - [anon_sym_BSLASH] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [aux_sym_trait_declaration_token1] = ACTIONS(910), - [aux_sym_interface_declaration_token1] = ACTIONS(910), - [aux_sym_class_declaration_token1] = ACTIONS(910), - [aux_sym_class_modifier_token1] = ACTIONS(910), - [aux_sym_class_modifier_token2] = ACTIONS(910), - [aux_sym_visibility_modifier_token1] = ACTIONS(910), - [aux_sym_visibility_modifier_token2] = ACTIONS(910), - [aux_sym_visibility_modifier_token3] = ACTIONS(910), - [aux_sym_arrow_function_token1] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_array] = ACTIONS(910), - [anon_sym_unset] = ACTIONS(910), - [aux_sym_echo_statement_token1] = ACTIONS(910), - [anon_sym_declare] = ACTIONS(910), - [aux_sym_declare_statement_token1] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [aux_sym_try_statement_token1] = ACTIONS(910), - [aux_sym_catch_clause_token1] = ACTIONS(910), - [aux_sym_finally_clause_token1] = ACTIONS(910), - [aux_sym_goto_statement_token1] = ACTIONS(910), - [aux_sym_continue_statement_token1] = ACTIONS(910), - [aux_sym_break_statement_token1] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [aux_sym_return_statement_token1] = ACTIONS(910), - [aux_sym_throw_expression_token1] = ACTIONS(910), - [aux_sym_while_statement_token1] = ACTIONS(910), - [aux_sym_while_statement_token2] = ACTIONS(910), - [aux_sym_do_statement_token1] = ACTIONS(910), - [aux_sym_for_statement_token1] = ACTIONS(910), - [aux_sym_for_statement_token2] = ACTIONS(910), - [aux_sym_foreach_statement_token1] = ACTIONS(910), - [aux_sym_foreach_statement_token2] = ACTIONS(910), - [aux_sym_if_statement_token1] = ACTIONS(910), - [aux_sym_if_statement_token2] = ACTIONS(910), - [aux_sym_else_if_clause_token1] = ACTIONS(910), - [aux_sym_else_clause_token1] = ACTIONS(910), - [aux_sym_match_expression_token1] = ACTIONS(910), - [aux_sym_match_default_expression_token1] = ACTIONS(910), - [aux_sym_switch_statement_token1] = ACTIONS(910), - [aux_sym_switch_block_token1] = ACTIONS(910), - [aux_sym_case_statement_token1] = ACTIONS(910), - [anon_sym_AT] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_clone] = ACTIONS(910), - [anon_sym_print] = ACTIONS(910), - [anon_sym_new] = ACTIONS(910), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(908), - [sym_shell_command_expression] = ACTIONS(908), - [anon_sym_list] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_self] = ACTIONS(910), - [anon_sym_parent] = ACTIONS(910), - [anon_sym_POUND_LBRACK] = ACTIONS(908), - [sym_string] = ACTIONS(908), - [sym_boolean] = ACTIONS(910), - [sym_null] = ACTIONS(910), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_yield] = ACTIONS(910), - [aux_sym_include_expression_token1] = ACTIONS(910), - [aux_sym_include_once_expression_token1] = ACTIONS(910), - [aux_sym_require_expression_token1] = ACTIONS(910), - [aux_sym_require_once_expression_token1] = ACTIONS(910), + [ts_builtin_sym_end] = ACTIONS(913), + [sym_name] = ACTIONS(915), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(913), + [aux_sym_function_static_declaration_token1] = ACTIONS(915), + [aux_sym_global_declaration_token1] = ACTIONS(915), + [aux_sym_namespace_definition_token1] = ACTIONS(915), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(915), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(915), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(915), + [anon_sym_BSLASH] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [aux_sym_trait_declaration_token1] = ACTIONS(915), + [aux_sym_interface_declaration_token1] = ACTIONS(915), + [aux_sym_class_declaration_token1] = ACTIONS(915), + [aux_sym_final_modifier_token1] = ACTIONS(915), + [aux_sym_abstract_modifier_token1] = ACTIONS(915), + [aux_sym_visibility_modifier_token1] = ACTIONS(915), + [aux_sym_visibility_modifier_token2] = ACTIONS(915), + [aux_sym_visibility_modifier_token3] = ACTIONS(915), + [aux_sym_arrow_function_token1] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_array] = ACTIONS(915), + [anon_sym_unset] = ACTIONS(915), + [aux_sym_echo_statement_token1] = ACTIONS(915), + [anon_sym_declare] = ACTIONS(915), + [aux_sym_declare_statement_token1] = ACTIONS(915), + [sym_float] = ACTIONS(915), + [aux_sym_try_statement_token1] = ACTIONS(915), + [aux_sym_catch_clause_token1] = ACTIONS(915), + [aux_sym_finally_clause_token1] = ACTIONS(915), + [aux_sym_goto_statement_token1] = ACTIONS(915), + [aux_sym_continue_statement_token1] = ACTIONS(915), + [aux_sym_break_statement_token1] = ACTIONS(915), + [sym_integer] = ACTIONS(915), + [aux_sym_return_statement_token1] = ACTIONS(915), + [aux_sym_throw_expression_token1] = ACTIONS(915), + [aux_sym_while_statement_token1] = ACTIONS(915), + [aux_sym_while_statement_token2] = ACTIONS(915), + [aux_sym_do_statement_token1] = ACTIONS(915), + [aux_sym_for_statement_token1] = ACTIONS(915), + [aux_sym_for_statement_token2] = ACTIONS(915), + [aux_sym_foreach_statement_token1] = ACTIONS(915), + [aux_sym_foreach_statement_token2] = ACTIONS(915), + [aux_sym_if_statement_token1] = ACTIONS(915), + [aux_sym_if_statement_token2] = ACTIONS(915), + [aux_sym_else_if_clause_token1] = ACTIONS(915), + [aux_sym_else_clause_token1] = ACTIONS(915), + [aux_sym_match_expression_token1] = ACTIONS(915), + [aux_sym_match_default_expression_token1] = ACTIONS(915), + [aux_sym_switch_statement_token1] = ACTIONS(915), + [aux_sym_switch_block_token1] = ACTIONS(915), + [aux_sym_case_statement_token1] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_clone] = ACTIONS(915), + [anon_sym_print] = ACTIONS(915), + [anon_sym_new] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [sym_shell_command_expression] = ACTIONS(913), + [anon_sym_list] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_self] = ACTIONS(915), + [anon_sym_parent] = ACTIONS(915), + [anon_sym_POUND_LBRACK] = ACTIONS(913), + [sym_string] = ACTIONS(913), + [sym_boolean] = ACTIONS(915), + [sym_null] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_yield] = ACTIONS(915), + [aux_sym_include_expression_token1] = ACTIONS(915), + [aux_sym_include_once_expression_token1] = ACTIONS(915), + [aux_sym_require_expression_token1] = ACTIONS(915), + [aux_sym_require_once_expression_token1] = ACTIONS(915), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(908), + [sym_heredoc] = ACTIONS(913), }, [414] = { [sym_text_interpolation] = STATE(414), - [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_class_declaration_token1] = ACTIONS(914), - [aux_sym_class_modifier_token1] = ACTIONS(914), - [aux_sym_class_modifier_token2] = 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), - [anon_sym_array] = ACTIONS(914), - [anon_sym_unset] = ACTIONS(914), - [aux_sym_echo_statement_token1] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(914), - [aux_sym_declare_statement_token1] = ACTIONS(914), - [sym_float] = ACTIONS(914), - [aux_sym_try_statement_token1] = ACTIONS(914), - [aux_sym_catch_clause_token1] = ACTIONS(914), - [aux_sym_finally_clause_token1] = ACTIONS(914), - [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), - [aux_sym_case_statement_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), - [anon_sym_clone] = ACTIONS(914), - [anon_sym_print] = ACTIONS(914), - [anon_sym_new] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(912), - [sym_shell_command_expression] = ACTIONS(912), - [anon_sym_list] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(912), - [anon_sym_self] = ACTIONS(914), - [anon_sym_parent] = ACTIONS(914), - [anon_sym_POUND_LBRACK] = ACTIONS(912), - [sym_string] = ACTIONS(912), - [sym_boolean] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(912), - [anon_sym_yield] = 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_else_if_clause] = STATE(522), + [aux_sym_if_statement_repeat1] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(917), + [sym_name] = ACTIONS(919), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(917), + [aux_sym_function_static_declaration_token1] = ACTIONS(919), + [aux_sym_global_declaration_token1] = ACTIONS(919), + [aux_sym_namespace_definition_token1] = ACTIONS(919), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(919), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(919), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [aux_sym_trait_declaration_token1] = ACTIONS(919), + [aux_sym_interface_declaration_token1] = ACTIONS(919), + [aux_sym_class_declaration_token1] = ACTIONS(919), + [aux_sym_final_modifier_token1] = ACTIONS(919), + [aux_sym_abstract_modifier_token1] = ACTIONS(919), + [aux_sym_visibility_modifier_token1] = ACTIONS(919), + [aux_sym_visibility_modifier_token2] = ACTIONS(919), + [aux_sym_visibility_modifier_token3] = ACTIONS(919), + [aux_sym_arrow_function_token1] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_array] = ACTIONS(919), + [anon_sym_unset] = ACTIONS(919), + [aux_sym_echo_statement_token1] = ACTIONS(919), + [anon_sym_declare] = ACTIONS(919), + [aux_sym_declare_statement_token1] = ACTIONS(919), + [sym_float] = ACTIONS(919), + [aux_sym_try_statement_token1] = ACTIONS(919), + [aux_sym_goto_statement_token1] = ACTIONS(919), + [aux_sym_continue_statement_token1] = ACTIONS(919), + [aux_sym_break_statement_token1] = ACTIONS(919), + [sym_integer] = ACTIONS(919), + [aux_sym_return_statement_token1] = ACTIONS(919), + [aux_sym_throw_expression_token1] = ACTIONS(919), + [aux_sym_while_statement_token1] = ACTIONS(919), + [aux_sym_while_statement_token2] = ACTIONS(919), + [aux_sym_do_statement_token1] = ACTIONS(919), + [aux_sym_for_statement_token1] = ACTIONS(919), + [aux_sym_for_statement_token2] = ACTIONS(919), + [aux_sym_foreach_statement_token1] = ACTIONS(919), + [aux_sym_foreach_statement_token2] = ACTIONS(919), + [aux_sym_if_statement_token1] = ACTIONS(919), + [aux_sym_if_statement_token2] = ACTIONS(919), + [aux_sym_else_if_clause_token1] = ACTIONS(921), + [aux_sym_else_clause_token1] = ACTIONS(919), + [aux_sym_match_expression_token1] = ACTIONS(919), + [aux_sym_match_default_expression_token1] = ACTIONS(919), + [aux_sym_switch_statement_token1] = ACTIONS(919), + [aux_sym_switch_block_token1] = ACTIONS(919), + [aux_sym_case_statement_token1] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_clone] = ACTIONS(919), + [anon_sym_print] = ACTIONS(919), + [anon_sym_new] = ACTIONS(919), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [sym_shell_command_expression] = ACTIONS(917), + [anon_sym_list] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_self] = ACTIONS(919), + [anon_sym_parent] = ACTIONS(919), + [anon_sym_POUND_LBRACK] = ACTIONS(917), + [sym_string] = ACTIONS(917), + [sym_boolean] = ACTIONS(919), + [sym_null] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_yield] = ACTIONS(919), + [aux_sym_include_expression_token1] = ACTIONS(919), + [aux_sym_include_once_expression_token1] = ACTIONS(919), + [aux_sym_require_expression_token1] = ACTIONS(919), + [aux_sym_require_once_expression_token1] = ACTIONS(919), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(912), + [sym_heredoc] = ACTIONS(917), }, [415] = { [sym_text_interpolation] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(916), - [sym_name] = ACTIONS(918), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(916), - [aux_sym_function_static_declaration_token1] = ACTIONS(918), - [aux_sym_global_declaration_token1] = ACTIONS(918), - [aux_sym_namespace_definition_token1] = ACTIONS(918), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(918), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(918), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(918), - [anon_sym_BSLASH] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [aux_sym_trait_declaration_token1] = ACTIONS(918), - [aux_sym_interface_declaration_token1] = ACTIONS(918), - [aux_sym_class_declaration_token1] = ACTIONS(918), - [aux_sym_class_modifier_token1] = ACTIONS(918), - [aux_sym_class_modifier_token2] = ACTIONS(918), - [aux_sym_visibility_modifier_token1] = ACTIONS(918), - [aux_sym_visibility_modifier_token2] = ACTIONS(918), - [aux_sym_visibility_modifier_token3] = ACTIONS(918), - [aux_sym_arrow_function_token1] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_array] = ACTIONS(918), - [anon_sym_unset] = ACTIONS(918), - [aux_sym_echo_statement_token1] = ACTIONS(918), - [anon_sym_declare] = ACTIONS(918), - [aux_sym_declare_statement_token1] = ACTIONS(918), - [sym_float] = ACTIONS(918), - [aux_sym_try_statement_token1] = ACTIONS(918), - [aux_sym_catch_clause_token1] = ACTIONS(918), - [aux_sym_finally_clause_token1] = ACTIONS(918), - [aux_sym_goto_statement_token1] = ACTIONS(918), - [aux_sym_continue_statement_token1] = ACTIONS(918), - [aux_sym_break_statement_token1] = ACTIONS(918), - [sym_integer] = ACTIONS(918), - [aux_sym_return_statement_token1] = ACTIONS(918), - [aux_sym_throw_expression_token1] = ACTIONS(918), - [aux_sym_while_statement_token1] = ACTIONS(918), - [aux_sym_while_statement_token2] = ACTIONS(918), - [aux_sym_do_statement_token1] = ACTIONS(918), - [aux_sym_for_statement_token1] = ACTIONS(918), - [aux_sym_for_statement_token2] = ACTIONS(918), - [aux_sym_foreach_statement_token1] = ACTIONS(918), - [aux_sym_foreach_statement_token2] = ACTIONS(918), - [aux_sym_if_statement_token1] = ACTIONS(918), - [aux_sym_if_statement_token2] = ACTIONS(918), - [aux_sym_else_if_clause_token1] = ACTIONS(918), - [aux_sym_else_clause_token1] = ACTIONS(918), - [aux_sym_match_expression_token1] = ACTIONS(918), - [aux_sym_match_default_expression_token1] = ACTIONS(918), - [aux_sym_switch_statement_token1] = ACTIONS(918), - [aux_sym_switch_block_token1] = ACTIONS(918), - [aux_sym_case_statement_token1] = ACTIONS(918), - [anon_sym_AT] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_clone] = ACTIONS(918), - [anon_sym_print] = ACTIONS(918), - [anon_sym_new] = ACTIONS(918), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_DASH_DASH] = ACTIONS(916), - [sym_shell_command_expression] = ACTIONS(916), - [anon_sym_list] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(916), - [anon_sym_self] = ACTIONS(918), - [anon_sym_parent] = ACTIONS(918), - [anon_sym_POUND_LBRACK] = ACTIONS(916), - [sym_string] = ACTIONS(916), - [sym_boolean] = ACTIONS(918), - [sym_null] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(918), - [aux_sym_include_expression_token1] = ACTIONS(918), - [aux_sym_include_once_expression_token1] = ACTIONS(918), - [aux_sym_require_expression_token1] = ACTIONS(918), - [aux_sym_require_once_expression_token1] = ACTIONS(918), + [ts_builtin_sym_end] = ACTIONS(924), + [sym_name] = ACTIONS(926), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(924), + [aux_sym_function_static_declaration_token1] = ACTIONS(926), + [aux_sym_global_declaration_token1] = ACTIONS(926), + [aux_sym_namespace_definition_token1] = ACTIONS(926), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(926), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(926), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(926), + [anon_sym_BSLASH] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [aux_sym_trait_declaration_token1] = ACTIONS(926), + [aux_sym_interface_declaration_token1] = ACTIONS(926), + [aux_sym_class_declaration_token1] = ACTIONS(926), + [aux_sym_final_modifier_token1] = ACTIONS(926), + [aux_sym_abstract_modifier_token1] = ACTIONS(926), + [aux_sym_visibility_modifier_token1] = ACTIONS(926), + [aux_sym_visibility_modifier_token2] = ACTIONS(926), + [aux_sym_visibility_modifier_token3] = ACTIONS(926), + [aux_sym_arrow_function_token1] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_array] = ACTIONS(926), + [anon_sym_unset] = ACTIONS(926), + [aux_sym_echo_statement_token1] = ACTIONS(926), + [anon_sym_declare] = ACTIONS(926), + [aux_sym_declare_statement_token1] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [aux_sym_try_statement_token1] = ACTIONS(926), + [aux_sym_catch_clause_token1] = ACTIONS(926), + [aux_sym_finally_clause_token1] = ACTIONS(926), + [aux_sym_goto_statement_token1] = ACTIONS(926), + [aux_sym_continue_statement_token1] = ACTIONS(926), + [aux_sym_break_statement_token1] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [aux_sym_return_statement_token1] = ACTIONS(926), + [aux_sym_throw_expression_token1] = ACTIONS(926), + [aux_sym_while_statement_token1] = ACTIONS(926), + [aux_sym_while_statement_token2] = ACTIONS(926), + [aux_sym_do_statement_token1] = ACTIONS(926), + [aux_sym_for_statement_token1] = ACTIONS(926), + [aux_sym_for_statement_token2] = ACTIONS(926), + [aux_sym_foreach_statement_token1] = ACTIONS(926), + [aux_sym_foreach_statement_token2] = ACTIONS(926), + [aux_sym_if_statement_token1] = ACTIONS(926), + [aux_sym_if_statement_token2] = ACTIONS(926), + [aux_sym_else_if_clause_token1] = ACTIONS(926), + [aux_sym_else_clause_token1] = ACTIONS(926), + [aux_sym_match_expression_token1] = ACTIONS(926), + [aux_sym_match_default_expression_token1] = ACTIONS(926), + [aux_sym_switch_statement_token1] = ACTIONS(926), + [aux_sym_switch_block_token1] = ACTIONS(926), + [aux_sym_case_statement_token1] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_clone] = ACTIONS(926), + [anon_sym_print] = ACTIONS(926), + [anon_sym_new] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(924), + [sym_shell_command_expression] = ACTIONS(924), + [anon_sym_list] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_self] = ACTIONS(926), + [anon_sym_parent] = ACTIONS(926), + [anon_sym_POUND_LBRACK] = ACTIONS(924), + [sym_string] = ACTIONS(924), + [sym_boolean] = ACTIONS(926), + [sym_null] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(924), + [anon_sym_yield] = ACTIONS(926), + [aux_sym_include_expression_token1] = ACTIONS(926), + [aux_sym_include_once_expression_token1] = ACTIONS(926), + [aux_sym_require_expression_token1] = ACTIONS(926), + [aux_sym_require_once_expression_token1] = ACTIONS(926), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(916), + [sym_heredoc] = ACTIONS(924), }, [416] = { [sym_text_interpolation] = STATE(416), - [sym_else_if_clause] = STATE(521), - [aux_sym_if_statement_repeat1] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(920), - [sym_name] = ACTIONS(922), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(920), - [aux_sym_function_static_declaration_token1] = ACTIONS(922), - [aux_sym_global_declaration_token1] = ACTIONS(922), - [aux_sym_namespace_definition_token1] = ACTIONS(922), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(922), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(922), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(922), - [anon_sym_BSLASH] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [aux_sym_trait_declaration_token1] = ACTIONS(922), - [aux_sym_interface_declaration_token1] = ACTIONS(922), - [aux_sym_class_declaration_token1] = ACTIONS(922), - [aux_sym_class_modifier_token1] = ACTIONS(922), - [aux_sym_class_modifier_token2] = ACTIONS(922), - [aux_sym_visibility_modifier_token1] = ACTIONS(922), - [aux_sym_visibility_modifier_token2] = ACTIONS(922), - [aux_sym_visibility_modifier_token3] = ACTIONS(922), - [aux_sym_arrow_function_token1] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_array] = ACTIONS(922), - [anon_sym_unset] = ACTIONS(922), - [aux_sym_echo_statement_token1] = ACTIONS(922), - [anon_sym_declare] = ACTIONS(922), - [aux_sym_declare_statement_token1] = ACTIONS(922), - [sym_float] = ACTIONS(922), - [aux_sym_try_statement_token1] = ACTIONS(922), - [aux_sym_goto_statement_token1] = ACTIONS(922), - [aux_sym_continue_statement_token1] = ACTIONS(922), - [aux_sym_break_statement_token1] = ACTIONS(922), - [sym_integer] = ACTIONS(922), - [aux_sym_return_statement_token1] = ACTIONS(922), - [aux_sym_throw_expression_token1] = ACTIONS(922), - [aux_sym_while_statement_token1] = ACTIONS(922), - [aux_sym_while_statement_token2] = ACTIONS(922), - [aux_sym_do_statement_token1] = ACTIONS(922), - [aux_sym_for_statement_token1] = ACTIONS(922), - [aux_sym_for_statement_token2] = ACTIONS(922), - [aux_sym_foreach_statement_token1] = ACTIONS(922), - [aux_sym_foreach_statement_token2] = ACTIONS(922), - [aux_sym_if_statement_token1] = ACTIONS(922), - [aux_sym_if_statement_token2] = ACTIONS(922), - [aux_sym_else_if_clause_token1] = ACTIONS(924), - [aux_sym_else_clause_token1] = ACTIONS(922), - [aux_sym_match_expression_token1] = ACTIONS(922), - [aux_sym_match_default_expression_token1] = ACTIONS(922), - [aux_sym_switch_statement_token1] = ACTIONS(922), - [aux_sym_switch_block_token1] = ACTIONS(922), - [aux_sym_case_statement_token1] = ACTIONS(922), - [anon_sym_AT] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_clone] = ACTIONS(922), - [anon_sym_print] = ACTIONS(922), - [anon_sym_new] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [sym_shell_command_expression] = ACTIONS(920), - [anon_sym_list] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_self] = ACTIONS(922), - [anon_sym_parent] = ACTIONS(922), - [anon_sym_POUND_LBRACK] = ACTIONS(920), - [sym_string] = ACTIONS(920), - [sym_boolean] = ACTIONS(922), - [sym_null] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_yield] = ACTIONS(922), - [aux_sym_include_expression_token1] = ACTIONS(922), - [aux_sym_include_once_expression_token1] = ACTIONS(922), - [aux_sym_require_expression_token1] = ACTIONS(922), - [aux_sym_require_once_expression_token1] = ACTIONS(922), + [ts_builtin_sym_end] = ACTIONS(928), + [sym_name] = ACTIONS(930), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(928), + [aux_sym_function_static_declaration_token1] = ACTIONS(930), + [aux_sym_global_declaration_token1] = ACTIONS(930), + [aux_sym_namespace_definition_token1] = ACTIONS(930), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(930), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(930), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(930), + [anon_sym_BSLASH] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(928), + [aux_sym_trait_declaration_token1] = ACTIONS(930), + [aux_sym_interface_declaration_token1] = ACTIONS(930), + [aux_sym_class_declaration_token1] = ACTIONS(930), + [aux_sym_final_modifier_token1] = ACTIONS(930), + [aux_sym_abstract_modifier_token1] = ACTIONS(930), + [aux_sym_visibility_modifier_token1] = ACTIONS(930), + [aux_sym_visibility_modifier_token2] = ACTIONS(930), + [aux_sym_visibility_modifier_token3] = ACTIONS(930), + [aux_sym_arrow_function_token1] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_array] = ACTIONS(930), + [anon_sym_unset] = ACTIONS(930), + [aux_sym_echo_statement_token1] = ACTIONS(930), + [anon_sym_declare] = ACTIONS(930), + [aux_sym_declare_statement_token1] = ACTIONS(930), + [sym_float] = ACTIONS(930), + [aux_sym_try_statement_token1] = ACTIONS(930), + [aux_sym_catch_clause_token1] = ACTIONS(930), + [aux_sym_finally_clause_token1] = ACTIONS(930), + [aux_sym_goto_statement_token1] = ACTIONS(930), + [aux_sym_continue_statement_token1] = ACTIONS(930), + [aux_sym_break_statement_token1] = ACTIONS(930), + [sym_integer] = ACTIONS(930), + [aux_sym_return_statement_token1] = ACTIONS(930), + [aux_sym_throw_expression_token1] = ACTIONS(930), + [aux_sym_while_statement_token1] = ACTIONS(930), + [aux_sym_while_statement_token2] = ACTIONS(930), + [aux_sym_do_statement_token1] = ACTIONS(930), + [aux_sym_for_statement_token1] = ACTIONS(930), + [aux_sym_for_statement_token2] = ACTIONS(930), + [aux_sym_foreach_statement_token1] = ACTIONS(930), + [aux_sym_foreach_statement_token2] = ACTIONS(930), + [aux_sym_if_statement_token1] = ACTIONS(930), + [aux_sym_if_statement_token2] = ACTIONS(930), + [aux_sym_else_if_clause_token1] = ACTIONS(930), + [aux_sym_else_clause_token1] = ACTIONS(930), + [aux_sym_match_expression_token1] = ACTIONS(930), + [aux_sym_match_default_expression_token1] = ACTIONS(930), + [aux_sym_switch_statement_token1] = ACTIONS(930), + [aux_sym_switch_block_token1] = ACTIONS(930), + [aux_sym_case_statement_token1] = ACTIONS(930), + [anon_sym_AT] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_clone] = ACTIONS(930), + [anon_sym_print] = ACTIONS(930), + [anon_sym_new] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [sym_shell_command_expression] = ACTIONS(928), + [anon_sym_list] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_self] = ACTIONS(930), + [anon_sym_parent] = ACTIONS(930), + [anon_sym_POUND_LBRACK] = ACTIONS(928), + [sym_string] = ACTIONS(928), + [sym_boolean] = ACTIONS(930), + [sym_null] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(928), + [anon_sym_yield] = ACTIONS(930), + [aux_sym_include_expression_token1] = ACTIONS(930), + [aux_sym_include_once_expression_token1] = ACTIONS(930), + [aux_sym_require_expression_token1] = ACTIONS(930), + [aux_sym_require_once_expression_token1] = ACTIONS(930), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(920), + [sym_heredoc] = ACTIONS(928), }, [417] = { [sym_text_interpolation] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(927), - [sym_name] = ACTIONS(929), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(931), - [aux_sym_function_static_declaration_token1] = ACTIONS(929), - [aux_sym_global_declaration_token1] = ACTIONS(929), - [aux_sym_namespace_definition_token1] = ACTIONS(929), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(929), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(929), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [aux_sym_trait_declaration_token1] = ACTIONS(929), - [aux_sym_interface_declaration_token1] = ACTIONS(929), - [aux_sym_class_declaration_token1] = ACTIONS(929), - [aux_sym_class_modifier_token1] = ACTIONS(929), - [aux_sym_class_modifier_token2] = ACTIONS(929), - [aux_sym_visibility_modifier_token1] = ACTIONS(929), - [aux_sym_visibility_modifier_token2] = ACTIONS(929), - [aux_sym_visibility_modifier_token3] = ACTIONS(929), - [aux_sym_arrow_function_token1] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_array] = ACTIONS(929), - [anon_sym_unset] = ACTIONS(929), - [aux_sym_echo_statement_token1] = ACTIONS(929), - [anon_sym_declare] = ACTIONS(929), - [aux_sym_declare_statement_token1] = ACTIONS(929), - [sym_float] = ACTIONS(929), - [aux_sym_try_statement_token1] = ACTIONS(929), - [aux_sym_goto_statement_token1] = ACTIONS(929), - [aux_sym_continue_statement_token1] = ACTIONS(929), - [aux_sym_break_statement_token1] = ACTIONS(929), - [sym_integer] = ACTIONS(929), - [aux_sym_return_statement_token1] = ACTIONS(929), - [aux_sym_throw_expression_token1] = ACTIONS(929), - [aux_sym_while_statement_token1] = ACTIONS(929), - [aux_sym_while_statement_token2] = ACTIONS(929), - [aux_sym_do_statement_token1] = ACTIONS(929), - [aux_sym_for_statement_token1] = ACTIONS(929), - [aux_sym_for_statement_token2] = ACTIONS(929), - [aux_sym_foreach_statement_token1] = ACTIONS(929), - [aux_sym_foreach_statement_token2] = ACTIONS(929), - [aux_sym_if_statement_token1] = ACTIONS(929), - [aux_sym_if_statement_token2] = ACTIONS(929), - [aux_sym_else_if_clause_token1] = ACTIONS(929), - [aux_sym_else_clause_token1] = ACTIONS(929), - [aux_sym_match_expression_token1] = ACTIONS(929), - [aux_sym_match_default_expression_token1] = ACTIONS(929), - [aux_sym_switch_statement_token1] = ACTIONS(929), - [aux_sym_switch_block_token1] = ACTIONS(929), - [aux_sym_case_statement_token1] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(929), - [anon_sym_DASH] = ACTIONS(929), - [anon_sym_TILDE] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_clone] = ACTIONS(929), - [anon_sym_print] = ACTIONS(929), - [anon_sym_new] = ACTIONS(929), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_DASH_DASH] = ACTIONS(927), - [sym_shell_command_expression] = ACTIONS(927), - [anon_sym_list] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_self] = ACTIONS(929), - [anon_sym_parent] = ACTIONS(929), - [anon_sym_POUND_LBRACK] = ACTIONS(927), - [sym_string] = ACTIONS(927), - [sym_boolean] = ACTIONS(929), - [sym_null] = ACTIONS(929), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_yield] = ACTIONS(929), - [aux_sym_include_expression_token1] = ACTIONS(929), - [aux_sym_include_once_expression_token1] = ACTIONS(929), - [aux_sym_require_expression_token1] = ACTIONS(929), - [aux_sym_require_once_expression_token1] = ACTIONS(929), + [ts_builtin_sym_end] = ACTIONS(932), + [sym_name] = ACTIONS(934), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(936), + [aux_sym_function_static_declaration_token1] = ACTIONS(934), + [aux_sym_global_declaration_token1] = ACTIONS(934), + [aux_sym_namespace_definition_token1] = ACTIONS(934), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(934), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(934), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(934), + [anon_sym_BSLASH] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(932), + [aux_sym_trait_declaration_token1] = ACTIONS(934), + [aux_sym_interface_declaration_token1] = ACTIONS(934), + [aux_sym_class_declaration_token1] = ACTIONS(934), + [aux_sym_final_modifier_token1] = ACTIONS(934), + [aux_sym_abstract_modifier_token1] = ACTIONS(934), + [aux_sym_visibility_modifier_token1] = ACTIONS(934), + [aux_sym_visibility_modifier_token2] = ACTIONS(934), + [aux_sym_visibility_modifier_token3] = ACTIONS(934), + [aux_sym_arrow_function_token1] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_array] = ACTIONS(934), + [anon_sym_unset] = ACTIONS(934), + [aux_sym_echo_statement_token1] = ACTIONS(934), + [anon_sym_declare] = ACTIONS(934), + [aux_sym_declare_statement_token1] = ACTIONS(934), + [sym_float] = ACTIONS(934), + [aux_sym_try_statement_token1] = ACTIONS(934), + [aux_sym_goto_statement_token1] = ACTIONS(934), + [aux_sym_continue_statement_token1] = ACTIONS(934), + [aux_sym_break_statement_token1] = ACTIONS(934), + [sym_integer] = ACTIONS(934), + [aux_sym_return_statement_token1] = ACTIONS(934), + [aux_sym_throw_expression_token1] = ACTIONS(934), + [aux_sym_while_statement_token1] = ACTIONS(934), + [aux_sym_while_statement_token2] = ACTIONS(934), + [aux_sym_do_statement_token1] = ACTIONS(934), + [aux_sym_for_statement_token1] = ACTIONS(934), + [aux_sym_for_statement_token2] = ACTIONS(934), + [aux_sym_foreach_statement_token1] = ACTIONS(934), + [aux_sym_foreach_statement_token2] = ACTIONS(934), + [aux_sym_if_statement_token1] = ACTIONS(934), + [aux_sym_if_statement_token2] = ACTIONS(934), + [aux_sym_else_if_clause_token1] = ACTIONS(934), + [aux_sym_else_clause_token1] = ACTIONS(934), + [aux_sym_match_expression_token1] = ACTIONS(934), + [aux_sym_match_default_expression_token1] = ACTIONS(934), + [aux_sym_switch_statement_token1] = ACTIONS(934), + [aux_sym_switch_block_token1] = ACTIONS(934), + [aux_sym_case_statement_token1] = ACTIONS(934), + [anon_sym_AT] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(932), + [anon_sym_BANG] = ACTIONS(932), + [anon_sym_clone] = ACTIONS(934), + [anon_sym_print] = ACTIONS(934), + [anon_sym_new] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), + [sym_shell_command_expression] = ACTIONS(932), + [anon_sym_list] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_self] = ACTIONS(934), + [anon_sym_parent] = ACTIONS(934), + [anon_sym_POUND_LBRACK] = ACTIONS(932), + [sym_string] = ACTIONS(932), + [sym_boolean] = ACTIONS(934), + [sym_null] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(932), + [anon_sym_yield] = ACTIONS(934), + [aux_sym_include_expression_token1] = ACTIONS(934), + [aux_sym_include_once_expression_token1] = ACTIONS(934), + [aux_sym_require_expression_token1] = ACTIONS(934), + [aux_sym_require_once_expression_token1] = ACTIONS(934), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(931), - [sym_heredoc] = ACTIONS(927), + [sym__automatic_semicolon] = ACTIONS(936), + [sym_heredoc] = ACTIONS(932), }, [418] = { [sym_text_interpolation] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(933), - [sym_name] = ACTIONS(935), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(937), - [aux_sym_function_static_declaration_token1] = ACTIONS(935), - [aux_sym_global_declaration_token1] = ACTIONS(935), - [aux_sym_namespace_definition_token1] = ACTIONS(935), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(935), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(935), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(935), - [anon_sym_BSLASH] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [aux_sym_trait_declaration_token1] = ACTIONS(935), - [aux_sym_interface_declaration_token1] = ACTIONS(935), - [aux_sym_class_declaration_token1] = ACTIONS(935), - [aux_sym_class_modifier_token1] = ACTIONS(935), - [aux_sym_class_modifier_token2] = ACTIONS(935), - [aux_sym_visibility_modifier_token1] = ACTIONS(935), - [aux_sym_visibility_modifier_token2] = ACTIONS(935), - [aux_sym_visibility_modifier_token3] = ACTIONS(935), - [aux_sym_arrow_function_token1] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_array] = ACTIONS(935), - [anon_sym_unset] = ACTIONS(935), - [aux_sym_echo_statement_token1] = ACTIONS(935), - [anon_sym_declare] = ACTIONS(935), - [aux_sym_declare_statement_token1] = ACTIONS(935), - [sym_float] = ACTIONS(935), - [aux_sym_try_statement_token1] = ACTIONS(935), - [aux_sym_goto_statement_token1] = ACTIONS(935), - [aux_sym_continue_statement_token1] = ACTIONS(935), - [aux_sym_break_statement_token1] = ACTIONS(935), - [sym_integer] = ACTIONS(935), - [aux_sym_return_statement_token1] = ACTIONS(935), - [aux_sym_throw_expression_token1] = ACTIONS(935), - [aux_sym_while_statement_token1] = ACTIONS(935), - [aux_sym_while_statement_token2] = ACTIONS(935), - [aux_sym_do_statement_token1] = ACTIONS(935), - [aux_sym_for_statement_token1] = ACTIONS(935), - [aux_sym_for_statement_token2] = ACTIONS(935), - [aux_sym_foreach_statement_token1] = ACTIONS(935), - [aux_sym_foreach_statement_token2] = ACTIONS(935), - [aux_sym_if_statement_token1] = ACTIONS(935), - [aux_sym_if_statement_token2] = ACTIONS(935), - [aux_sym_else_if_clause_token1] = ACTIONS(935), - [aux_sym_else_clause_token1] = ACTIONS(935), - [aux_sym_match_expression_token1] = ACTIONS(935), - [aux_sym_match_default_expression_token1] = ACTIONS(935), - [aux_sym_switch_statement_token1] = ACTIONS(935), - [aux_sym_switch_block_token1] = ACTIONS(935), - [aux_sym_case_statement_token1] = ACTIONS(935), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_clone] = ACTIONS(935), - [anon_sym_print] = ACTIONS(935), - [anon_sym_new] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [sym_shell_command_expression] = ACTIONS(933), - [anon_sym_list] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_self] = ACTIONS(935), - [anon_sym_parent] = ACTIONS(935), - [anon_sym_POUND_LBRACK] = ACTIONS(933), - [sym_string] = ACTIONS(933), - [sym_boolean] = ACTIONS(935), - [sym_null] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_yield] = ACTIONS(935), - [aux_sym_include_expression_token1] = ACTIONS(935), - [aux_sym_include_once_expression_token1] = ACTIONS(935), - [aux_sym_require_expression_token1] = ACTIONS(935), - [aux_sym_require_once_expression_token1] = ACTIONS(935), + [ts_builtin_sym_end] = ACTIONS(938), + [sym_name] = ACTIONS(940), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(942), + [aux_sym_function_static_declaration_token1] = ACTIONS(940), + [aux_sym_global_declaration_token1] = ACTIONS(940), + [aux_sym_namespace_definition_token1] = ACTIONS(940), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(940), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(940), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(940), + [anon_sym_BSLASH] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [aux_sym_trait_declaration_token1] = ACTIONS(940), + [aux_sym_interface_declaration_token1] = ACTIONS(940), + [aux_sym_class_declaration_token1] = ACTIONS(940), + [aux_sym_final_modifier_token1] = ACTIONS(940), + [aux_sym_abstract_modifier_token1] = ACTIONS(940), + [aux_sym_visibility_modifier_token1] = ACTIONS(940), + [aux_sym_visibility_modifier_token2] = ACTIONS(940), + [aux_sym_visibility_modifier_token3] = ACTIONS(940), + [aux_sym_arrow_function_token1] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_array] = ACTIONS(940), + [anon_sym_unset] = ACTIONS(940), + [aux_sym_echo_statement_token1] = ACTIONS(940), + [anon_sym_declare] = ACTIONS(940), + [aux_sym_declare_statement_token1] = ACTIONS(940), + [sym_float] = ACTIONS(940), + [aux_sym_try_statement_token1] = ACTIONS(940), + [aux_sym_goto_statement_token1] = ACTIONS(940), + [aux_sym_continue_statement_token1] = ACTIONS(940), + [aux_sym_break_statement_token1] = ACTIONS(940), + [sym_integer] = ACTIONS(940), + [aux_sym_return_statement_token1] = ACTIONS(940), + [aux_sym_throw_expression_token1] = ACTIONS(940), + [aux_sym_while_statement_token1] = ACTIONS(940), + [aux_sym_while_statement_token2] = ACTIONS(940), + [aux_sym_do_statement_token1] = ACTIONS(940), + [aux_sym_for_statement_token1] = ACTIONS(940), + [aux_sym_for_statement_token2] = ACTIONS(940), + [aux_sym_foreach_statement_token1] = ACTIONS(940), + [aux_sym_foreach_statement_token2] = ACTIONS(940), + [aux_sym_if_statement_token1] = ACTIONS(940), + [aux_sym_if_statement_token2] = ACTIONS(940), + [aux_sym_else_if_clause_token1] = ACTIONS(940), + [aux_sym_else_clause_token1] = ACTIONS(940), + [aux_sym_match_expression_token1] = ACTIONS(940), + [aux_sym_match_default_expression_token1] = ACTIONS(940), + [aux_sym_switch_statement_token1] = ACTIONS(940), + [aux_sym_switch_block_token1] = ACTIONS(940), + [aux_sym_case_statement_token1] = ACTIONS(940), + [anon_sym_AT] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_clone] = ACTIONS(940), + [anon_sym_print] = ACTIONS(940), + [anon_sym_new] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [sym_shell_command_expression] = ACTIONS(938), + [anon_sym_list] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_self] = ACTIONS(940), + [anon_sym_parent] = ACTIONS(940), + [anon_sym_POUND_LBRACK] = ACTIONS(938), + [sym_string] = ACTIONS(938), + [sym_boolean] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_yield] = ACTIONS(940), + [aux_sym_include_expression_token1] = ACTIONS(940), + [aux_sym_include_once_expression_token1] = ACTIONS(940), + [aux_sym_require_expression_token1] = ACTIONS(940), + [aux_sym_require_once_expression_token1] = ACTIONS(940), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(937), - [sym_heredoc] = ACTIONS(933), + [sym__automatic_semicolon] = ACTIONS(942), + [sym_heredoc] = ACTIONS(938), }, [419] = { [sym_text_interpolation] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(939), - [sym_name] = ACTIONS(941), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(943), - [aux_sym_function_static_declaration_token1] = ACTIONS(941), - [aux_sym_global_declaration_token1] = ACTIONS(941), - [aux_sym_namespace_definition_token1] = ACTIONS(941), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(941), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(941), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(941), - [anon_sym_BSLASH] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [aux_sym_trait_declaration_token1] = ACTIONS(941), - [aux_sym_interface_declaration_token1] = ACTIONS(941), - [aux_sym_class_declaration_token1] = ACTIONS(941), - [aux_sym_class_modifier_token1] = ACTIONS(941), - [aux_sym_class_modifier_token2] = ACTIONS(941), - [aux_sym_visibility_modifier_token1] = ACTIONS(941), - [aux_sym_visibility_modifier_token2] = ACTIONS(941), - [aux_sym_visibility_modifier_token3] = ACTIONS(941), - [aux_sym_arrow_function_token1] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_array] = ACTIONS(941), - [anon_sym_unset] = ACTIONS(941), - [aux_sym_echo_statement_token1] = ACTIONS(941), - [anon_sym_declare] = ACTIONS(941), - [aux_sym_declare_statement_token1] = ACTIONS(941), - [sym_float] = ACTIONS(941), - [aux_sym_try_statement_token1] = ACTIONS(941), - [aux_sym_goto_statement_token1] = ACTIONS(941), - [aux_sym_continue_statement_token1] = ACTIONS(941), - [aux_sym_break_statement_token1] = ACTIONS(941), - [sym_integer] = ACTIONS(941), - [aux_sym_return_statement_token1] = ACTIONS(941), - [aux_sym_throw_expression_token1] = ACTIONS(941), - [aux_sym_while_statement_token1] = ACTIONS(941), - [aux_sym_while_statement_token2] = ACTIONS(941), - [aux_sym_do_statement_token1] = ACTIONS(941), - [aux_sym_for_statement_token1] = ACTIONS(941), - [aux_sym_for_statement_token2] = ACTIONS(941), - [aux_sym_foreach_statement_token1] = ACTIONS(941), - [aux_sym_foreach_statement_token2] = ACTIONS(941), - [aux_sym_if_statement_token1] = ACTIONS(941), - [aux_sym_if_statement_token2] = ACTIONS(941), - [aux_sym_else_if_clause_token1] = ACTIONS(941), - [aux_sym_else_clause_token1] = ACTIONS(941), - [aux_sym_match_expression_token1] = ACTIONS(941), - [aux_sym_match_default_expression_token1] = ACTIONS(941), - [aux_sym_switch_statement_token1] = ACTIONS(941), - [aux_sym_switch_block_token1] = ACTIONS(941), - [aux_sym_case_statement_token1] = ACTIONS(941), - [anon_sym_AT] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(941), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_clone] = ACTIONS(941), - [anon_sym_print] = ACTIONS(941), - [anon_sym_new] = ACTIONS(941), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_DASH_DASH] = ACTIONS(939), - [sym_shell_command_expression] = ACTIONS(939), - [anon_sym_list] = ACTIONS(941), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_self] = ACTIONS(941), - [anon_sym_parent] = ACTIONS(941), - [anon_sym_POUND_LBRACK] = ACTIONS(939), - [sym_string] = ACTIONS(939), - [sym_boolean] = ACTIONS(941), - [sym_null] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(941), - [aux_sym_include_expression_token1] = ACTIONS(941), - [aux_sym_include_once_expression_token1] = ACTIONS(941), - [aux_sym_require_expression_token1] = ACTIONS(941), - [aux_sym_require_once_expression_token1] = ACTIONS(941), + [ts_builtin_sym_end] = ACTIONS(944), + [sym_name] = ACTIONS(946), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(948), + [aux_sym_function_static_declaration_token1] = ACTIONS(946), + [aux_sym_global_declaration_token1] = ACTIONS(946), + [aux_sym_namespace_definition_token1] = ACTIONS(946), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(946), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(946), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(946), + [anon_sym_BSLASH] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [aux_sym_trait_declaration_token1] = ACTIONS(946), + [aux_sym_interface_declaration_token1] = ACTIONS(946), + [aux_sym_class_declaration_token1] = ACTIONS(946), + [aux_sym_final_modifier_token1] = ACTIONS(946), + [aux_sym_abstract_modifier_token1] = ACTIONS(946), + [aux_sym_visibility_modifier_token1] = ACTIONS(946), + [aux_sym_visibility_modifier_token2] = ACTIONS(946), + [aux_sym_visibility_modifier_token3] = ACTIONS(946), + [aux_sym_arrow_function_token1] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_array] = ACTIONS(946), + [anon_sym_unset] = ACTIONS(946), + [aux_sym_echo_statement_token1] = ACTIONS(946), + [anon_sym_declare] = ACTIONS(946), + [aux_sym_declare_statement_token1] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [aux_sym_try_statement_token1] = ACTIONS(946), + [aux_sym_goto_statement_token1] = ACTIONS(946), + [aux_sym_continue_statement_token1] = ACTIONS(946), + [aux_sym_break_statement_token1] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [aux_sym_return_statement_token1] = ACTIONS(946), + [aux_sym_throw_expression_token1] = ACTIONS(946), + [aux_sym_while_statement_token1] = ACTIONS(946), + [aux_sym_while_statement_token2] = ACTIONS(946), + [aux_sym_do_statement_token1] = ACTIONS(946), + [aux_sym_for_statement_token1] = ACTIONS(946), + [aux_sym_for_statement_token2] = ACTIONS(946), + [aux_sym_foreach_statement_token1] = ACTIONS(946), + [aux_sym_foreach_statement_token2] = ACTIONS(946), + [aux_sym_if_statement_token1] = ACTIONS(946), + [aux_sym_if_statement_token2] = ACTIONS(946), + [aux_sym_else_if_clause_token1] = ACTIONS(946), + [aux_sym_else_clause_token1] = ACTIONS(946), + [aux_sym_match_expression_token1] = ACTIONS(946), + [aux_sym_match_default_expression_token1] = ACTIONS(946), + [aux_sym_switch_statement_token1] = ACTIONS(946), + [aux_sym_switch_block_token1] = ACTIONS(946), + [aux_sym_case_statement_token1] = ACTIONS(946), + [anon_sym_AT] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_clone] = ACTIONS(946), + [anon_sym_print] = ACTIONS(946), + [anon_sym_new] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(944), + [sym_shell_command_expression] = ACTIONS(944), + [anon_sym_list] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_self] = ACTIONS(946), + [anon_sym_parent] = ACTIONS(946), + [anon_sym_POUND_LBRACK] = ACTIONS(944), + [sym_string] = ACTIONS(944), + [sym_boolean] = ACTIONS(946), + [sym_null] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(946), + [aux_sym_include_expression_token1] = ACTIONS(946), + [aux_sym_include_once_expression_token1] = ACTIONS(946), + [aux_sym_require_expression_token1] = ACTIONS(946), + [aux_sym_require_once_expression_token1] = ACTIONS(946), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(943), - [sym_heredoc] = ACTIONS(939), + [sym__automatic_semicolon] = ACTIONS(948), + [sym_heredoc] = ACTIONS(944), }, [420] = { [sym_text_interpolation] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(945), - [sym_name] = ACTIONS(947), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(949), - [aux_sym_function_static_declaration_token1] = ACTIONS(947), - [aux_sym_global_declaration_token1] = ACTIONS(947), - [aux_sym_namespace_definition_token1] = ACTIONS(947), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(947), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(947), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(947), - [anon_sym_BSLASH] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [aux_sym_trait_declaration_token1] = ACTIONS(947), - [aux_sym_interface_declaration_token1] = ACTIONS(947), - [aux_sym_class_declaration_token1] = ACTIONS(947), - [aux_sym_class_modifier_token1] = ACTIONS(947), - [aux_sym_class_modifier_token2] = ACTIONS(947), - [aux_sym_visibility_modifier_token1] = ACTIONS(947), - [aux_sym_visibility_modifier_token2] = ACTIONS(947), - [aux_sym_visibility_modifier_token3] = ACTIONS(947), - [aux_sym_arrow_function_token1] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_array] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [aux_sym_echo_statement_token1] = ACTIONS(947), - [anon_sym_declare] = ACTIONS(947), - [aux_sym_declare_statement_token1] = ACTIONS(947), - [sym_float] = ACTIONS(947), - [aux_sym_try_statement_token1] = ACTIONS(947), - [aux_sym_goto_statement_token1] = ACTIONS(947), - [aux_sym_continue_statement_token1] = ACTIONS(947), - [aux_sym_break_statement_token1] = ACTIONS(947), - [sym_integer] = ACTIONS(947), - [aux_sym_return_statement_token1] = ACTIONS(947), - [aux_sym_throw_expression_token1] = ACTIONS(947), - [aux_sym_while_statement_token1] = ACTIONS(947), - [aux_sym_while_statement_token2] = ACTIONS(947), - [aux_sym_do_statement_token1] = ACTIONS(947), - [aux_sym_for_statement_token1] = ACTIONS(947), - [aux_sym_for_statement_token2] = ACTIONS(947), - [aux_sym_foreach_statement_token1] = ACTIONS(947), - [aux_sym_foreach_statement_token2] = ACTIONS(947), - [aux_sym_if_statement_token1] = ACTIONS(947), - [aux_sym_if_statement_token2] = ACTIONS(947), - [aux_sym_else_if_clause_token1] = ACTIONS(947), - [aux_sym_else_clause_token1] = ACTIONS(947), - [aux_sym_match_expression_token1] = ACTIONS(947), - [aux_sym_match_default_expression_token1] = ACTIONS(947), - [aux_sym_switch_statement_token1] = ACTIONS(947), - [aux_sym_switch_block_token1] = ACTIONS(947), - [aux_sym_case_statement_token1] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(945), - [anon_sym_clone] = ACTIONS(947), - [anon_sym_print] = ACTIONS(947), - [anon_sym_new] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(945), - [anon_sym_DASH_DASH] = ACTIONS(945), - [sym_shell_command_expression] = ACTIONS(945), - [anon_sym_list] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_self] = ACTIONS(947), - [anon_sym_parent] = ACTIONS(947), - [anon_sym_POUND_LBRACK] = ACTIONS(945), - [sym_string] = ACTIONS(945), - [sym_boolean] = ACTIONS(947), - [sym_null] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_yield] = ACTIONS(947), - [aux_sym_include_expression_token1] = ACTIONS(947), - [aux_sym_include_once_expression_token1] = ACTIONS(947), - [aux_sym_require_expression_token1] = ACTIONS(947), - [aux_sym_require_once_expression_token1] = ACTIONS(947), + [ts_builtin_sym_end] = ACTIONS(950), + [sym_name] = ACTIONS(952), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(954), + [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_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), + [anon_sym_array] = ACTIONS(952), + [anon_sym_unset] = ACTIONS(952), + [aux_sym_echo_statement_token1] = ACTIONS(952), + [anon_sym_declare] = ACTIONS(952), + [aux_sym_declare_statement_token1] = 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), + [aux_sym_case_statement_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), + [anon_sym_clone] = ACTIONS(952), + [anon_sym_print] = ACTIONS(952), + [anon_sym_new] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(950), + [sym_shell_command_expression] = ACTIONS(950), + [anon_sym_list] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_self] = ACTIONS(952), + [anon_sym_parent] = ACTIONS(952), + [anon_sym_POUND_LBRACK] = ACTIONS(950), + [sym_string] = ACTIONS(950), + [sym_boolean] = ACTIONS(952), + [sym_null] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_yield] = 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__automatic_semicolon] = ACTIONS(949), - [sym_heredoc] = ACTIONS(945), + [sym__automatic_semicolon] = ACTIONS(954), + [sym_heredoc] = ACTIONS(950), }, [421] = { [sym_text_interpolation] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(951), - [sym_name] = ACTIONS(953), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(951), - [aux_sym_function_static_declaration_token1] = ACTIONS(953), - [aux_sym_global_declaration_token1] = ACTIONS(953), - [aux_sym_namespace_definition_token1] = ACTIONS(953), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(953), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(953), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(953), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [aux_sym_trait_declaration_token1] = ACTIONS(953), - [aux_sym_interface_declaration_token1] = ACTIONS(953), - [aux_sym_class_declaration_token1] = ACTIONS(953), - [aux_sym_class_modifier_token1] = ACTIONS(953), - [aux_sym_class_modifier_token2] = ACTIONS(953), - [aux_sym_visibility_modifier_token1] = ACTIONS(953), - [aux_sym_visibility_modifier_token2] = ACTIONS(953), - [aux_sym_visibility_modifier_token3] = ACTIONS(953), - [aux_sym_arrow_function_token1] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_array] = ACTIONS(953), - [anon_sym_unset] = ACTIONS(953), - [aux_sym_echo_statement_token1] = ACTIONS(953), - [anon_sym_declare] = ACTIONS(953), - [aux_sym_declare_statement_token1] = ACTIONS(953), - [sym_float] = ACTIONS(953), - [aux_sym_try_statement_token1] = ACTIONS(953), - [aux_sym_goto_statement_token1] = ACTIONS(953), - [aux_sym_continue_statement_token1] = ACTIONS(953), - [aux_sym_break_statement_token1] = ACTIONS(953), - [sym_integer] = ACTIONS(953), - [aux_sym_return_statement_token1] = ACTIONS(953), - [aux_sym_throw_expression_token1] = ACTIONS(953), - [aux_sym_while_statement_token1] = ACTIONS(953), - [aux_sym_while_statement_token2] = ACTIONS(953), - [aux_sym_do_statement_token1] = ACTIONS(953), - [aux_sym_for_statement_token1] = ACTIONS(953), - [aux_sym_for_statement_token2] = ACTIONS(953), - [aux_sym_foreach_statement_token1] = ACTIONS(953), - [aux_sym_foreach_statement_token2] = ACTIONS(953), - [aux_sym_if_statement_token1] = ACTIONS(953), - [aux_sym_if_statement_token2] = ACTIONS(953), - [aux_sym_else_if_clause_token1] = ACTIONS(953), - [aux_sym_else_clause_token1] = ACTIONS(953), - [aux_sym_match_expression_token1] = ACTIONS(953), - [aux_sym_match_default_expression_token1] = ACTIONS(953), - [aux_sym_switch_statement_token1] = ACTIONS(953), - [aux_sym_switch_block_token1] = ACTIONS(953), - [aux_sym_case_statement_token1] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_clone] = ACTIONS(953), - [anon_sym_print] = ACTIONS(953), - [anon_sym_new] = ACTIONS(953), - [anon_sym_PLUS_PLUS] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(951), - [sym_shell_command_expression] = ACTIONS(951), - [anon_sym_list] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_self] = ACTIONS(953), - [anon_sym_parent] = ACTIONS(953), - [anon_sym_POUND_LBRACK] = ACTIONS(951), - [sym_string] = ACTIONS(951), - [sym_boolean] = ACTIONS(953), - [sym_null] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_yield] = ACTIONS(953), - [aux_sym_include_expression_token1] = ACTIONS(953), - [aux_sym_include_once_expression_token1] = ACTIONS(953), - [aux_sym_require_expression_token1] = ACTIONS(953), - [aux_sym_require_once_expression_token1] = ACTIONS(953), + [ts_builtin_sym_end] = ACTIONS(956), + [sym_name] = ACTIONS(958), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(960), + [aux_sym_function_static_declaration_token1] = ACTIONS(958), + [aux_sym_global_declaration_token1] = ACTIONS(958), + [aux_sym_namespace_definition_token1] = ACTIONS(958), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(958), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(958), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(958), + [anon_sym_BSLASH] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [aux_sym_trait_declaration_token1] = ACTIONS(958), + [aux_sym_interface_declaration_token1] = ACTIONS(958), + [aux_sym_class_declaration_token1] = ACTIONS(958), + [aux_sym_final_modifier_token1] = ACTIONS(958), + [aux_sym_abstract_modifier_token1] = ACTIONS(958), + [aux_sym_visibility_modifier_token1] = ACTIONS(958), + [aux_sym_visibility_modifier_token2] = ACTIONS(958), + [aux_sym_visibility_modifier_token3] = ACTIONS(958), + [aux_sym_arrow_function_token1] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_array] = ACTIONS(958), + [anon_sym_unset] = ACTIONS(958), + [aux_sym_echo_statement_token1] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [aux_sym_declare_statement_token1] = ACTIONS(958), + [sym_float] = ACTIONS(958), + [aux_sym_try_statement_token1] = ACTIONS(958), + [aux_sym_goto_statement_token1] = ACTIONS(958), + [aux_sym_continue_statement_token1] = ACTIONS(958), + [aux_sym_break_statement_token1] = ACTIONS(958), + [sym_integer] = ACTIONS(958), + [aux_sym_return_statement_token1] = ACTIONS(958), + [aux_sym_throw_expression_token1] = ACTIONS(958), + [aux_sym_while_statement_token1] = ACTIONS(958), + [aux_sym_while_statement_token2] = ACTIONS(958), + [aux_sym_do_statement_token1] = ACTIONS(958), + [aux_sym_for_statement_token1] = ACTIONS(958), + [aux_sym_for_statement_token2] = ACTIONS(958), + [aux_sym_foreach_statement_token1] = ACTIONS(958), + [aux_sym_foreach_statement_token2] = ACTIONS(958), + [aux_sym_if_statement_token1] = ACTIONS(958), + [aux_sym_if_statement_token2] = ACTIONS(958), + [aux_sym_else_if_clause_token1] = ACTIONS(958), + [aux_sym_else_clause_token1] = ACTIONS(958), + [aux_sym_match_expression_token1] = ACTIONS(958), + [aux_sym_match_default_expression_token1] = ACTIONS(958), + [aux_sym_switch_statement_token1] = ACTIONS(958), + [aux_sym_switch_block_token1] = ACTIONS(958), + [aux_sym_case_statement_token1] = ACTIONS(958), + [anon_sym_AT] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_clone] = ACTIONS(958), + [anon_sym_print] = ACTIONS(958), + [anon_sym_new] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [sym_shell_command_expression] = ACTIONS(956), + [anon_sym_list] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_self] = ACTIONS(958), + [anon_sym_parent] = ACTIONS(958), + [anon_sym_POUND_LBRACK] = ACTIONS(956), + [sym_string] = ACTIONS(956), + [sym_boolean] = ACTIONS(958), + [sym_null] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_yield] = ACTIONS(958), + [aux_sym_include_expression_token1] = ACTIONS(958), + [aux_sym_include_once_expression_token1] = ACTIONS(958), + [aux_sym_require_expression_token1] = ACTIONS(958), + [aux_sym_require_once_expression_token1] = ACTIONS(958), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(951), - [sym_heredoc] = ACTIONS(951), + [sym__automatic_semicolon] = ACTIONS(960), + [sym_heredoc] = ACTIONS(956), }, [422] = { [sym_text_interpolation] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(959), - [aux_sym_function_static_declaration_token1] = ACTIONS(957), - [aux_sym_global_declaration_token1] = ACTIONS(957), - [aux_sym_namespace_definition_token1] = ACTIONS(957), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(957), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(957), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(957), - [anon_sym_BSLASH] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [aux_sym_trait_declaration_token1] = ACTIONS(957), - [aux_sym_interface_declaration_token1] = ACTIONS(957), - [aux_sym_class_declaration_token1] = ACTIONS(957), - [aux_sym_class_modifier_token1] = ACTIONS(957), - [aux_sym_class_modifier_token2] = ACTIONS(957), - [aux_sym_visibility_modifier_token1] = ACTIONS(957), - [aux_sym_visibility_modifier_token2] = ACTIONS(957), - [aux_sym_visibility_modifier_token3] = ACTIONS(957), - [aux_sym_arrow_function_token1] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_array] = ACTIONS(957), - [anon_sym_unset] = ACTIONS(957), - [aux_sym_echo_statement_token1] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [aux_sym_declare_statement_token1] = ACTIONS(957), - [sym_float] = ACTIONS(957), - [aux_sym_try_statement_token1] = ACTIONS(957), - [aux_sym_goto_statement_token1] = ACTIONS(957), - [aux_sym_continue_statement_token1] = ACTIONS(957), - [aux_sym_break_statement_token1] = ACTIONS(957), - [sym_integer] = ACTIONS(957), - [aux_sym_return_statement_token1] = ACTIONS(957), - [aux_sym_throw_expression_token1] = ACTIONS(957), - [aux_sym_while_statement_token1] = ACTIONS(957), - [aux_sym_while_statement_token2] = ACTIONS(957), - [aux_sym_do_statement_token1] = ACTIONS(957), - [aux_sym_for_statement_token1] = ACTIONS(957), - [aux_sym_for_statement_token2] = ACTIONS(957), - [aux_sym_foreach_statement_token1] = ACTIONS(957), - [aux_sym_foreach_statement_token2] = ACTIONS(957), - [aux_sym_if_statement_token1] = ACTIONS(957), - [aux_sym_if_statement_token2] = ACTIONS(957), - [aux_sym_else_if_clause_token1] = ACTIONS(957), - [aux_sym_else_clause_token1] = ACTIONS(957), - [aux_sym_match_expression_token1] = ACTIONS(957), - [aux_sym_match_default_expression_token1] = ACTIONS(957), - [aux_sym_switch_statement_token1] = ACTIONS(957), - [aux_sym_switch_block_token1] = ACTIONS(957), - [aux_sym_case_statement_token1] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_TILDE] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_clone] = ACTIONS(957), - [anon_sym_print] = ACTIONS(957), - [anon_sym_new] = ACTIONS(957), - [anon_sym_PLUS_PLUS] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(955), - [sym_shell_command_expression] = ACTIONS(955), - [anon_sym_list] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_self] = ACTIONS(957), - [anon_sym_parent] = ACTIONS(957), - [anon_sym_POUND_LBRACK] = ACTIONS(955), - [sym_string] = ACTIONS(955), - [sym_boolean] = ACTIONS(957), - [sym_null] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_yield] = ACTIONS(957), - [aux_sym_include_expression_token1] = ACTIONS(957), - [aux_sym_include_once_expression_token1] = ACTIONS(957), - [aux_sym_require_expression_token1] = ACTIONS(957), - [aux_sym_require_once_expression_token1] = ACTIONS(957), + [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_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), + [anon_sym_array] = ACTIONS(964), + [anon_sym_unset] = ACTIONS(964), + [aux_sym_echo_statement_token1] = ACTIONS(964), + [anon_sym_declare] = ACTIONS(964), + [aux_sym_declare_statement_token1] = ACTIONS(964), + [sym_float] = ACTIONS(964), + [aux_sym_try_statement_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), + [aux_sym_case_statement_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), + [anon_sym_clone] = ACTIONS(964), + [anon_sym_print] = ACTIONS(964), + [anon_sym_new] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(962), + [sym_shell_command_expression] = ACTIONS(962), + [anon_sym_list] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_self] = ACTIONS(964), + [anon_sym_parent] = ACTIONS(964), + [anon_sym_POUND_LBRACK] = ACTIONS(962), + [sym_string] = ACTIONS(962), + [sym_boolean] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_yield] = 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__automatic_semicolon] = ACTIONS(959), - [sym_heredoc] = ACTIONS(955), + [sym__automatic_semicolon] = ACTIONS(962), + [sym_heredoc] = ACTIONS(962), }, [423] = { [sym_text_interpolation] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(961), - [sym_name] = ACTIONS(963), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(965), - [aux_sym_function_static_declaration_token1] = ACTIONS(963), - [aux_sym_global_declaration_token1] = ACTIONS(963), - [aux_sym_namespace_definition_token1] = ACTIONS(963), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(963), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(963), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(963), - [anon_sym_BSLASH] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [aux_sym_trait_declaration_token1] = ACTIONS(963), - [aux_sym_interface_declaration_token1] = ACTIONS(963), - [aux_sym_class_declaration_token1] = ACTIONS(963), - [aux_sym_class_modifier_token1] = ACTIONS(963), - [aux_sym_class_modifier_token2] = ACTIONS(963), - [aux_sym_visibility_modifier_token1] = ACTIONS(963), - [aux_sym_visibility_modifier_token2] = ACTIONS(963), - [aux_sym_visibility_modifier_token3] = ACTIONS(963), - [aux_sym_arrow_function_token1] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_array] = ACTIONS(963), - [anon_sym_unset] = ACTIONS(963), - [aux_sym_echo_statement_token1] = ACTIONS(963), - [anon_sym_declare] = ACTIONS(963), - [aux_sym_declare_statement_token1] = ACTIONS(963), - [sym_float] = ACTIONS(963), - [aux_sym_try_statement_token1] = ACTIONS(963), - [aux_sym_goto_statement_token1] = ACTIONS(963), - [aux_sym_continue_statement_token1] = ACTIONS(963), - [aux_sym_break_statement_token1] = ACTIONS(963), - [sym_integer] = ACTIONS(963), - [aux_sym_return_statement_token1] = ACTIONS(963), - [aux_sym_throw_expression_token1] = ACTIONS(963), - [aux_sym_while_statement_token1] = ACTIONS(963), - [aux_sym_while_statement_token2] = ACTIONS(963), - [aux_sym_do_statement_token1] = ACTIONS(963), - [aux_sym_for_statement_token1] = ACTIONS(963), - [aux_sym_for_statement_token2] = ACTIONS(963), - [aux_sym_foreach_statement_token1] = ACTIONS(963), - [aux_sym_foreach_statement_token2] = ACTIONS(963), - [aux_sym_if_statement_token1] = ACTIONS(963), - [aux_sym_if_statement_token2] = ACTIONS(963), - [aux_sym_else_if_clause_token1] = ACTIONS(963), - [aux_sym_else_clause_token1] = ACTIONS(963), - [aux_sym_match_expression_token1] = ACTIONS(963), - [aux_sym_match_default_expression_token1] = ACTIONS(963), - [aux_sym_switch_statement_token1] = ACTIONS(963), - [aux_sym_switch_block_token1] = ACTIONS(963), - [aux_sym_case_statement_token1] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_clone] = ACTIONS(963), - [anon_sym_print] = ACTIONS(963), - [anon_sym_new] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [sym_shell_command_expression] = ACTIONS(961), - [anon_sym_list] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_self] = ACTIONS(963), - [anon_sym_parent] = ACTIONS(963), - [anon_sym_POUND_LBRACK] = ACTIONS(961), - [sym_string] = ACTIONS(961), - [sym_boolean] = ACTIONS(963), - [sym_null] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_yield] = ACTIONS(963), - [aux_sym_include_expression_token1] = ACTIONS(963), - [aux_sym_include_once_expression_token1] = ACTIONS(963), - [aux_sym_require_expression_token1] = ACTIONS(963), - [aux_sym_require_once_expression_token1] = ACTIONS(963), + [ts_builtin_sym_end] = ACTIONS(966), + [sym_name] = ACTIONS(968), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(970), + [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_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), + [anon_sym_array] = ACTIONS(968), + [anon_sym_unset] = ACTIONS(968), + [aux_sym_echo_statement_token1] = ACTIONS(968), + [anon_sym_declare] = ACTIONS(968), + [aux_sym_declare_statement_token1] = 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), + [aux_sym_case_statement_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), + [anon_sym_clone] = ACTIONS(968), + [anon_sym_print] = ACTIONS(968), + [anon_sym_new] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [sym_shell_command_expression] = ACTIONS(966), + [anon_sym_list] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_self] = ACTIONS(968), + [anon_sym_parent] = ACTIONS(968), + [anon_sym_POUND_LBRACK] = ACTIONS(966), + [sym_string] = ACTIONS(966), + [sym_boolean] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_yield] = 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__automatic_semicolon] = ACTIONS(965), - [sym_heredoc] = ACTIONS(961), + [sym__automatic_semicolon] = ACTIONS(970), + [sym_heredoc] = ACTIONS(966), }, [424] = { [sym_text_interpolation] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(967), - [sym_name] = ACTIONS(969), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(971), - [aux_sym_function_static_declaration_token1] = ACTIONS(969), - [aux_sym_global_declaration_token1] = ACTIONS(969), - [aux_sym_namespace_definition_token1] = ACTIONS(969), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(969), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(969), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(969), - [anon_sym_BSLASH] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [aux_sym_trait_declaration_token1] = ACTIONS(969), - [aux_sym_interface_declaration_token1] = ACTIONS(969), - [aux_sym_class_declaration_token1] = ACTIONS(969), - [aux_sym_class_modifier_token1] = ACTIONS(969), - [aux_sym_class_modifier_token2] = ACTIONS(969), - [aux_sym_visibility_modifier_token1] = ACTIONS(969), - [aux_sym_visibility_modifier_token2] = ACTIONS(969), - [aux_sym_visibility_modifier_token3] = ACTIONS(969), - [aux_sym_arrow_function_token1] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_array] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [aux_sym_echo_statement_token1] = ACTIONS(969), - [anon_sym_declare] = ACTIONS(969), - [aux_sym_declare_statement_token1] = ACTIONS(969), - [sym_float] = ACTIONS(969), - [aux_sym_try_statement_token1] = ACTIONS(969), - [aux_sym_goto_statement_token1] = ACTIONS(969), - [aux_sym_continue_statement_token1] = ACTIONS(969), - [aux_sym_break_statement_token1] = ACTIONS(969), - [sym_integer] = ACTIONS(969), - [aux_sym_return_statement_token1] = ACTIONS(969), - [aux_sym_throw_expression_token1] = ACTIONS(969), - [aux_sym_while_statement_token1] = ACTIONS(969), - [aux_sym_while_statement_token2] = ACTIONS(969), - [aux_sym_do_statement_token1] = ACTIONS(969), - [aux_sym_for_statement_token1] = ACTIONS(969), - [aux_sym_for_statement_token2] = ACTIONS(969), - [aux_sym_foreach_statement_token1] = ACTIONS(969), - [aux_sym_foreach_statement_token2] = ACTIONS(969), - [aux_sym_if_statement_token1] = ACTIONS(969), - [aux_sym_if_statement_token2] = ACTIONS(969), - [aux_sym_else_if_clause_token1] = ACTIONS(969), - [aux_sym_else_clause_token1] = ACTIONS(969), - [aux_sym_match_expression_token1] = ACTIONS(969), - [aux_sym_match_default_expression_token1] = ACTIONS(969), - [aux_sym_switch_statement_token1] = ACTIONS(969), - [aux_sym_switch_block_token1] = ACTIONS(969), - [aux_sym_case_statement_token1] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_clone] = ACTIONS(969), - [anon_sym_print] = ACTIONS(969), - [anon_sym_new] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [sym_shell_command_expression] = ACTIONS(967), - [anon_sym_list] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_self] = ACTIONS(969), - [anon_sym_parent] = ACTIONS(969), - [anon_sym_POUND_LBRACK] = ACTIONS(967), - [sym_string] = ACTIONS(967), - [sym_boolean] = ACTIONS(969), - [sym_null] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_yield] = ACTIONS(969), - [aux_sym_include_expression_token1] = ACTIONS(969), - [aux_sym_include_once_expression_token1] = ACTIONS(969), - [aux_sym_require_expression_token1] = ACTIONS(969), - [aux_sym_require_once_expression_token1] = ACTIONS(969), + [ts_builtin_sym_end] = ACTIONS(972), + [sym_name] = ACTIONS(974), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(976), + [aux_sym_function_static_declaration_token1] = ACTIONS(974), + [aux_sym_global_declaration_token1] = ACTIONS(974), + [aux_sym_namespace_definition_token1] = ACTIONS(974), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(974), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(974), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(974), + [anon_sym_BSLASH] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [aux_sym_trait_declaration_token1] = ACTIONS(974), + [aux_sym_interface_declaration_token1] = ACTIONS(974), + [aux_sym_class_declaration_token1] = ACTIONS(974), + [aux_sym_final_modifier_token1] = ACTIONS(974), + [aux_sym_abstract_modifier_token1] = ACTIONS(974), + [aux_sym_visibility_modifier_token1] = ACTIONS(974), + [aux_sym_visibility_modifier_token2] = ACTIONS(974), + [aux_sym_visibility_modifier_token3] = ACTIONS(974), + [aux_sym_arrow_function_token1] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_array] = ACTIONS(974), + [anon_sym_unset] = ACTIONS(974), + [aux_sym_echo_statement_token1] = ACTIONS(974), + [anon_sym_declare] = ACTIONS(974), + [aux_sym_declare_statement_token1] = ACTIONS(974), + [sym_float] = ACTIONS(974), + [aux_sym_try_statement_token1] = ACTIONS(974), + [aux_sym_goto_statement_token1] = ACTIONS(974), + [aux_sym_continue_statement_token1] = ACTIONS(974), + [aux_sym_break_statement_token1] = ACTIONS(974), + [sym_integer] = ACTIONS(974), + [aux_sym_return_statement_token1] = ACTIONS(974), + [aux_sym_throw_expression_token1] = ACTIONS(974), + [aux_sym_while_statement_token1] = ACTIONS(974), + [aux_sym_while_statement_token2] = ACTIONS(974), + [aux_sym_do_statement_token1] = ACTIONS(974), + [aux_sym_for_statement_token1] = ACTIONS(974), + [aux_sym_for_statement_token2] = ACTIONS(974), + [aux_sym_foreach_statement_token1] = ACTIONS(974), + [aux_sym_foreach_statement_token2] = ACTIONS(974), + [aux_sym_if_statement_token1] = ACTIONS(974), + [aux_sym_if_statement_token2] = ACTIONS(974), + [aux_sym_else_if_clause_token1] = ACTIONS(974), + [aux_sym_else_clause_token1] = ACTIONS(974), + [aux_sym_match_expression_token1] = ACTIONS(974), + [aux_sym_match_default_expression_token1] = ACTIONS(974), + [aux_sym_switch_statement_token1] = ACTIONS(974), + [aux_sym_switch_block_token1] = ACTIONS(974), + [aux_sym_case_statement_token1] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_clone] = ACTIONS(974), + [anon_sym_print] = ACTIONS(974), + [anon_sym_new] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [sym_shell_command_expression] = ACTIONS(972), + [anon_sym_list] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_self] = ACTIONS(974), + [anon_sym_parent] = ACTIONS(974), + [anon_sym_POUND_LBRACK] = ACTIONS(972), + [sym_string] = ACTIONS(972), + [sym_boolean] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_yield] = ACTIONS(974), + [aux_sym_include_expression_token1] = ACTIONS(974), + [aux_sym_include_once_expression_token1] = ACTIONS(974), + [aux_sym_require_expression_token1] = ACTIONS(974), + [aux_sym_require_once_expression_token1] = ACTIONS(974), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(971), - [sym_heredoc] = ACTIONS(967), + [sym__automatic_semicolon] = ACTIONS(976), + [sym_heredoc] = ACTIONS(972), }, [425] = { [sym_text_interpolation] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(973), - [sym_name] = ACTIONS(975), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(977), - [aux_sym_function_static_declaration_token1] = ACTIONS(975), - [aux_sym_global_declaration_token1] = ACTIONS(975), - [aux_sym_namespace_definition_token1] = ACTIONS(975), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(975), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(975), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [aux_sym_trait_declaration_token1] = ACTIONS(975), - [aux_sym_interface_declaration_token1] = ACTIONS(975), - [aux_sym_class_declaration_token1] = ACTIONS(975), - [aux_sym_class_modifier_token1] = ACTIONS(975), - [aux_sym_class_modifier_token2] = ACTIONS(975), - [aux_sym_visibility_modifier_token1] = ACTIONS(975), - [aux_sym_visibility_modifier_token2] = ACTIONS(975), - [aux_sym_visibility_modifier_token3] = ACTIONS(975), - [aux_sym_arrow_function_token1] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_array] = ACTIONS(975), - [anon_sym_unset] = ACTIONS(975), - [aux_sym_echo_statement_token1] = ACTIONS(975), - [anon_sym_declare] = ACTIONS(975), - [aux_sym_declare_statement_token1] = ACTIONS(975), - [sym_float] = ACTIONS(975), - [aux_sym_try_statement_token1] = ACTIONS(975), - [aux_sym_goto_statement_token1] = ACTIONS(975), - [aux_sym_continue_statement_token1] = ACTIONS(975), - [aux_sym_break_statement_token1] = ACTIONS(975), - [sym_integer] = ACTIONS(975), - [aux_sym_return_statement_token1] = ACTIONS(975), - [aux_sym_throw_expression_token1] = ACTIONS(975), - [aux_sym_while_statement_token1] = ACTIONS(975), - [aux_sym_while_statement_token2] = ACTIONS(975), - [aux_sym_do_statement_token1] = ACTIONS(975), - [aux_sym_for_statement_token1] = ACTIONS(975), - [aux_sym_for_statement_token2] = ACTIONS(975), - [aux_sym_foreach_statement_token1] = ACTIONS(975), - [aux_sym_foreach_statement_token2] = ACTIONS(975), - [aux_sym_if_statement_token1] = ACTIONS(975), - [aux_sym_if_statement_token2] = ACTIONS(975), - [aux_sym_else_if_clause_token1] = ACTIONS(975), - [aux_sym_else_clause_token1] = ACTIONS(975), - [aux_sym_match_expression_token1] = ACTIONS(975), - [aux_sym_match_default_expression_token1] = ACTIONS(975), - [aux_sym_switch_statement_token1] = ACTIONS(975), - [aux_sym_switch_block_token1] = ACTIONS(975), - [aux_sym_case_statement_token1] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_clone] = ACTIONS(975), - [anon_sym_print] = ACTIONS(975), - [anon_sym_new] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(973), - [sym_shell_command_expression] = ACTIONS(973), - [anon_sym_list] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_self] = ACTIONS(975), - [anon_sym_parent] = ACTIONS(975), - [anon_sym_POUND_LBRACK] = ACTIONS(973), - [sym_string] = ACTIONS(973), - [sym_boolean] = ACTIONS(975), - [sym_null] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_yield] = ACTIONS(975), - [aux_sym_include_expression_token1] = ACTIONS(975), - [aux_sym_include_once_expression_token1] = ACTIONS(975), - [aux_sym_require_expression_token1] = ACTIONS(975), - [aux_sym_require_once_expression_token1] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(978), + [sym_name] = ACTIONS(980), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(982), + [aux_sym_function_static_declaration_token1] = ACTIONS(980), + [aux_sym_global_declaration_token1] = ACTIONS(980), + [aux_sym_namespace_definition_token1] = ACTIONS(980), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(980), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(980), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(980), + [anon_sym_BSLASH] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [aux_sym_trait_declaration_token1] = ACTIONS(980), + [aux_sym_interface_declaration_token1] = ACTIONS(980), + [aux_sym_class_declaration_token1] = ACTIONS(980), + [aux_sym_final_modifier_token1] = ACTIONS(980), + [aux_sym_abstract_modifier_token1] = ACTIONS(980), + [aux_sym_visibility_modifier_token1] = ACTIONS(980), + [aux_sym_visibility_modifier_token2] = ACTIONS(980), + [aux_sym_visibility_modifier_token3] = ACTIONS(980), + [aux_sym_arrow_function_token1] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_array] = ACTIONS(980), + [anon_sym_unset] = ACTIONS(980), + [aux_sym_echo_statement_token1] = ACTIONS(980), + [anon_sym_declare] = ACTIONS(980), + [aux_sym_declare_statement_token1] = ACTIONS(980), + [sym_float] = ACTIONS(980), + [aux_sym_try_statement_token1] = ACTIONS(980), + [aux_sym_goto_statement_token1] = ACTIONS(980), + [aux_sym_continue_statement_token1] = ACTIONS(980), + [aux_sym_break_statement_token1] = ACTIONS(980), + [sym_integer] = ACTIONS(980), + [aux_sym_return_statement_token1] = ACTIONS(980), + [aux_sym_throw_expression_token1] = ACTIONS(980), + [aux_sym_while_statement_token1] = ACTIONS(980), + [aux_sym_while_statement_token2] = ACTIONS(980), + [aux_sym_do_statement_token1] = ACTIONS(980), + [aux_sym_for_statement_token1] = ACTIONS(980), + [aux_sym_for_statement_token2] = ACTIONS(980), + [aux_sym_foreach_statement_token1] = ACTIONS(980), + [aux_sym_foreach_statement_token2] = ACTIONS(980), + [aux_sym_if_statement_token1] = ACTIONS(980), + [aux_sym_if_statement_token2] = ACTIONS(980), + [aux_sym_else_if_clause_token1] = ACTIONS(980), + [aux_sym_else_clause_token1] = ACTIONS(980), + [aux_sym_match_expression_token1] = ACTIONS(980), + [aux_sym_match_default_expression_token1] = ACTIONS(980), + [aux_sym_switch_statement_token1] = ACTIONS(980), + [aux_sym_switch_block_token1] = ACTIONS(980), + [aux_sym_case_statement_token1] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_clone] = ACTIONS(980), + [anon_sym_print] = ACTIONS(980), + [anon_sym_new] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(978), + [sym_shell_command_expression] = ACTIONS(978), + [anon_sym_list] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_self] = ACTIONS(980), + [anon_sym_parent] = ACTIONS(980), + [anon_sym_POUND_LBRACK] = ACTIONS(978), + [sym_string] = ACTIONS(978), + [sym_boolean] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_yield] = ACTIONS(980), + [aux_sym_include_expression_token1] = ACTIONS(980), + [aux_sym_include_once_expression_token1] = ACTIONS(980), + [aux_sym_require_expression_token1] = ACTIONS(980), + [aux_sym_require_once_expression_token1] = ACTIONS(980), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(977), - [sym_heredoc] = ACTIONS(973), + [sym__automatic_semicolon] = ACTIONS(982), + [sym_heredoc] = ACTIONS(978), }, [426] = { [sym_text_interpolation] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(979), - [sym_name] = ACTIONS(981), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(983), - [aux_sym_function_static_declaration_token1] = ACTIONS(981), - [aux_sym_global_declaration_token1] = ACTIONS(981), - [aux_sym_namespace_definition_token1] = ACTIONS(981), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(981), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(981), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(981), - [anon_sym_BSLASH] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [aux_sym_trait_declaration_token1] = ACTIONS(981), - [aux_sym_interface_declaration_token1] = ACTIONS(981), - [aux_sym_class_declaration_token1] = ACTIONS(981), - [aux_sym_class_modifier_token1] = ACTIONS(981), - [aux_sym_class_modifier_token2] = ACTIONS(981), - [aux_sym_visibility_modifier_token1] = ACTIONS(981), - [aux_sym_visibility_modifier_token2] = ACTIONS(981), - [aux_sym_visibility_modifier_token3] = ACTIONS(981), - [aux_sym_arrow_function_token1] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_array] = ACTIONS(981), - [anon_sym_unset] = ACTIONS(981), - [aux_sym_echo_statement_token1] = ACTIONS(981), - [anon_sym_declare] = ACTIONS(981), - [aux_sym_declare_statement_token1] = ACTIONS(981), - [sym_float] = ACTIONS(981), - [aux_sym_try_statement_token1] = ACTIONS(981), - [aux_sym_goto_statement_token1] = ACTIONS(981), - [aux_sym_continue_statement_token1] = ACTIONS(981), - [aux_sym_break_statement_token1] = ACTIONS(981), - [sym_integer] = ACTIONS(981), - [aux_sym_return_statement_token1] = ACTIONS(981), - [aux_sym_throw_expression_token1] = ACTIONS(981), - [aux_sym_while_statement_token1] = ACTIONS(981), - [aux_sym_while_statement_token2] = ACTIONS(981), - [aux_sym_do_statement_token1] = ACTIONS(981), - [aux_sym_for_statement_token1] = ACTIONS(981), - [aux_sym_for_statement_token2] = ACTIONS(981), - [aux_sym_foreach_statement_token1] = ACTIONS(981), - [aux_sym_foreach_statement_token2] = ACTIONS(981), - [aux_sym_if_statement_token1] = ACTIONS(981), - [aux_sym_if_statement_token2] = ACTIONS(981), - [aux_sym_else_if_clause_token1] = ACTIONS(981), - [aux_sym_else_clause_token1] = ACTIONS(981), - [aux_sym_match_expression_token1] = ACTIONS(981), - [aux_sym_match_default_expression_token1] = ACTIONS(981), - [aux_sym_switch_statement_token1] = ACTIONS(981), - [aux_sym_switch_block_token1] = ACTIONS(981), - [aux_sym_case_statement_token1] = ACTIONS(981), - [anon_sym_AT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_TILDE] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_clone] = ACTIONS(981), - [anon_sym_print] = ACTIONS(981), - [anon_sym_new] = ACTIONS(981), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [sym_shell_command_expression] = ACTIONS(979), - [anon_sym_list] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_self] = ACTIONS(981), - [anon_sym_parent] = ACTIONS(981), - [anon_sym_POUND_LBRACK] = ACTIONS(979), - [sym_string] = ACTIONS(979), - [sym_boolean] = ACTIONS(981), - [sym_null] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_yield] = ACTIONS(981), - [aux_sym_include_expression_token1] = ACTIONS(981), - [aux_sym_include_once_expression_token1] = ACTIONS(981), - [aux_sym_require_expression_token1] = ACTIONS(981), - [aux_sym_require_once_expression_token1] = ACTIONS(981), + [ts_builtin_sym_end] = ACTIONS(984), + [sym_name] = ACTIONS(986), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(988), + [aux_sym_function_static_declaration_token1] = ACTIONS(986), + [aux_sym_global_declaration_token1] = ACTIONS(986), + [aux_sym_namespace_definition_token1] = ACTIONS(986), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(986), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(986), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(986), + [anon_sym_BSLASH] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [aux_sym_trait_declaration_token1] = ACTIONS(986), + [aux_sym_interface_declaration_token1] = ACTIONS(986), + [aux_sym_class_declaration_token1] = ACTIONS(986), + [aux_sym_final_modifier_token1] = ACTIONS(986), + [aux_sym_abstract_modifier_token1] = ACTIONS(986), + [aux_sym_visibility_modifier_token1] = ACTIONS(986), + [aux_sym_visibility_modifier_token2] = ACTIONS(986), + [aux_sym_visibility_modifier_token3] = ACTIONS(986), + [aux_sym_arrow_function_token1] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_array] = ACTIONS(986), + [anon_sym_unset] = ACTIONS(986), + [aux_sym_echo_statement_token1] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [aux_sym_declare_statement_token1] = ACTIONS(986), + [sym_float] = ACTIONS(986), + [aux_sym_try_statement_token1] = ACTIONS(986), + [aux_sym_goto_statement_token1] = ACTIONS(986), + [aux_sym_continue_statement_token1] = ACTIONS(986), + [aux_sym_break_statement_token1] = ACTIONS(986), + [sym_integer] = ACTIONS(986), + [aux_sym_return_statement_token1] = ACTIONS(986), + [aux_sym_throw_expression_token1] = ACTIONS(986), + [aux_sym_while_statement_token1] = ACTIONS(986), + [aux_sym_while_statement_token2] = ACTIONS(986), + [aux_sym_do_statement_token1] = ACTIONS(986), + [aux_sym_for_statement_token1] = ACTIONS(986), + [aux_sym_for_statement_token2] = ACTIONS(986), + [aux_sym_foreach_statement_token1] = ACTIONS(986), + [aux_sym_foreach_statement_token2] = ACTIONS(986), + [aux_sym_if_statement_token1] = ACTIONS(986), + [aux_sym_if_statement_token2] = ACTIONS(986), + [aux_sym_else_if_clause_token1] = ACTIONS(986), + [aux_sym_else_clause_token1] = ACTIONS(986), + [aux_sym_match_expression_token1] = ACTIONS(986), + [aux_sym_match_default_expression_token1] = ACTIONS(986), + [aux_sym_switch_statement_token1] = ACTIONS(986), + [aux_sym_switch_block_token1] = ACTIONS(986), + [aux_sym_case_statement_token1] = ACTIONS(986), + [anon_sym_AT] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_clone] = ACTIONS(986), + [anon_sym_print] = ACTIONS(986), + [anon_sym_new] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [sym_shell_command_expression] = ACTIONS(984), + [anon_sym_list] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_self] = ACTIONS(986), + [anon_sym_parent] = ACTIONS(986), + [anon_sym_POUND_LBRACK] = ACTIONS(984), + [sym_string] = ACTIONS(984), + [sym_boolean] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_yield] = ACTIONS(986), + [aux_sym_include_expression_token1] = ACTIONS(986), + [aux_sym_include_once_expression_token1] = ACTIONS(986), + [aux_sym_require_expression_token1] = ACTIONS(986), + [aux_sym_require_once_expression_token1] = ACTIONS(986), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(983), - [sym_heredoc] = ACTIONS(979), + [sym__automatic_semicolon] = ACTIONS(988), + [sym_heredoc] = ACTIONS(984), }, [427] = { [sym_text_interpolation] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(985), - [sym_name] = ACTIONS(987), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(989), - [aux_sym_function_static_declaration_token1] = ACTIONS(987), - [aux_sym_global_declaration_token1] = ACTIONS(987), - [aux_sym_namespace_definition_token1] = ACTIONS(987), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(987), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(987), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(987), - [anon_sym_BSLASH] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_RBRACE] = ACTIONS(985), - [aux_sym_trait_declaration_token1] = ACTIONS(987), - [aux_sym_interface_declaration_token1] = ACTIONS(987), - [aux_sym_class_declaration_token1] = ACTIONS(987), - [aux_sym_class_modifier_token1] = ACTIONS(987), - [aux_sym_class_modifier_token2] = ACTIONS(987), - [aux_sym_visibility_modifier_token1] = ACTIONS(987), - [aux_sym_visibility_modifier_token2] = ACTIONS(987), - [aux_sym_visibility_modifier_token3] = ACTIONS(987), - [aux_sym_arrow_function_token1] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_array] = ACTIONS(987), - [anon_sym_unset] = ACTIONS(987), - [aux_sym_echo_statement_token1] = ACTIONS(987), - [anon_sym_declare] = ACTIONS(987), - [aux_sym_declare_statement_token1] = ACTIONS(987), - [sym_float] = ACTIONS(987), - [aux_sym_try_statement_token1] = ACTIONS(987), - [aux_sym_goto_statement_token1] = ACTIONS(987), - [aux_sym_continue_statement_token1] = ACTIONS(987), - [aux_sym_break_statement_token1] = ACTIONS(987), - [sym_integer] = ACTIONS(987), - [aux_sym_return_statement_token1] = ACTIONS(987), - [aux_sym_throw_expression_token1] = ACTIONS(987), - [aux_sym_while_statement_token1] = ACTIONS(987), - [aux_sym_while_statement_token2] = ACTIONS(987), - [aux_sym_do_statement_token1] = ACTIONS(987), - [aux_sym_for_statement_token1] = ACTIONS(987), - [aux_sym_for_statement_token2] = ACTIONS(987), - [aux_sym_foreach_statement_token1] = ACTIONS(987), - [aux_sym_foreach_statement_token2] = ACTIONS(987), - [aux_sym_if_statement_token1] = ACTIONS(987), - [aux_sym_if_statement_token2] = ACTIONS(987), - [aux_sym_else_if_clause_token1] = ACTIONS(987), - [aux_sym_else_clause_token1] = ACTIONS(987), - [aux_sym_match_expression_token1] = ACTIONS(987), - [aux_sym_match_default_expression_token1] = ACTIONS(987), - [aux_sym_switch_statement_token1] = ACTIONS(987), - [aux_sym_switch_block_token1] = ACTIONS(987), - [aux_sym_case_statement_token1] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_clone] = ACTIONS(987), - [anon_sym_print] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(985), - [anon_sym_DASH_DASH] = ACTIONS(985), - [sym_shell_command_expression] = ACTIONS(985), - [anon_sym_list] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(985), - [anon_sym_self] = ACTIONS(987), - [anon_sym_parent] = ACTIONS(987), - [anon_sym_POUND_LBRACK] = ACTIONS(985), - [sym_string] = ACTIONS(985), - [sym_boolean] = ACTIONS(987), - [sym_null] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(987), - [aux_sym_include_expression_token1] = ACTIONS(987), - [aux_sym_include_once_expression_token1] = ACTIONS(987), - [aux_sym_require_expression_token1] = ACTIONS(987), - [aux_sym_require_once_expression_token1] = ACTIONS(987), + [ts_builtin_sym_end] = ACTIONS(990), + [sym_name] = ACTIONS(992), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(994), + [aux_sym_function_static_declaration_token1] = ACTIONS(992), + [aux_sym_global_declaration_token1] = ACTIONS(992), + [aux_sym_namespace_definition_token1] = ACTIONS(992), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(992), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(992), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(992), + [anon_sym_BSLASH] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [aux_sym_trait_declaration_token1] = ACTIONS(992), + [aux_sym_interface_declaration_token1] = ACTIONS(992), + [aux_sym_class_declaration_token1] = ACTIONS(992), + [aux_sym_final_modifier_token1] = ACTIONS(992), + [aux_sym_abstract_modifier_token1] = ACTIONS(992), + [aux_sym_visibility_modifier_token1] = ACTIONS(992), + [aux_sym_visibility_modifier_token2] = ACTIONS(992), + [aux_sym_visibility_modifier_token3] = ACTIONS(992), + [aux_sym_arrow_function_token1] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_array] = ACTIONS(992), + [anon_sym_unset] = ACTIONS(992), + [aux_sym_echo_statement_token1] = ACTIONS(992), + [anon_sym_declare] = ACTIONS(992), + [aux_sym_declare_statement_token1] = ACTIONS(992), + [sym_float] = ACTIONS(992), + [aux_sym_try_statement_token1] = ACTIONS(992), + [aux_sym_goto_statement_token1] = ACTIONS(992), + [aux_sym_continue_statement_token1] = ACTIONS(992), + [aux_sym_break_statement_token1] = ACTIONS(992), + [sym_integer] = ACTIONS(992), + [aux_sym_return_statement_token1] = ACTIONS(992), + [aux_sym_throw_expression_token1] = ACTIONS(992), + [aux_sym_while_statement_token1] = ACTIONS(992), + [aux_sym_while_statement_token2] = ACTIONS(992), + [aux_sym_do_statement_token1] = ACTIONS(992), + [aux_sym_for_statement_token1] = ACTIONS(992), + [aux_sym_for_statement_token2] = ACTIONS(992), + [aux_sym_foreach_statement_token1] = ACTIONS(992), + [aux_sym_foreach_statement_token2] = ACTIONS(992), + [aux_sym_if_statement_token1] = ACTIONS(992), + [aux_sym_if_statement_token2] = ACTIONS(992), + [aux_sym_else_if_clause_token1] = ACTIONS(992), + [aux_sym_else_clause_token1] = ACTIONS(992), + [aux_sym_match_expression_token1] = ACTIONS(992), + [aux_sym_match_default_expression_token1] = ACTIONS(992), + [aux_sym_switch_statement_token1] = ACTIONS(992), + [aux_sym_switch_block_token1] = ACTIONS(992), + [aux_sym_case_statement_token1] = ACTIONS(992), + [anon_sym_AT] = ACTIONS(990), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_clone] = ACTIONS(992), + [anon_sym_print] = ACTIONS(992), + [anon_sym_new] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [sym_shell_command_expression] = ACTIONS(990), + [anon_sym_list] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_self] = ACTIONS(992), + [anon_sym_parent] = ACTIONS(992), + [anon_sym_POUND_LBRACK] = ACTIONS(990), + [sym_string] = ACTIONS(990), + [sym_boolean] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_yield] = ACTIONS(992), + [aux_sym_include_expression_token1] = ACTIONS(992), + [aux_sym_include_once_expression_token1] = ACTIONS(992), + [aux_sym_require_expression_token1] = ACTIONS(992), + [aux_sym_require_once_expression_token1] = ACTIONS(992), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(989), - [sym_heredoc] = ACTIONS(985), + [sym__automatic_semicolon] = ACTIONS(994), + [sym_heredoc] = ACTIONS(990), }, [428] = { [sym_text_interpolation] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(991), - [sym_name] = ACTIONS(993), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(991), - [aux_sym_function_static_declaration_token1] = ACTIONS(993), - [aux_sym_global_declaration_token1] = ACTIONS(993), - [aux_sym_namespace_definition_token1] = ACTIONS(993), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(993), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(993), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(993), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [aux_sym_trait_declaration_token1] = ACTIONS(993), - [aux_sym_interface_declaration_token1] = ACTIONS(993), - [aux_sym_class_declaration_token1] = ACTIONS(993), - [aux_sym_class_modifier_token1] = ACTIONS(993), - [aux_sym_class_modifier_token2] = ACTIONS(993), - [aux_sym_visibility_modifier_token1] = ACTIONS(993), - [aux_sym_visibility_modifier_token2] = ACTIONS(993), - [aux_sym_visibility_modifier_token3] = ACTIONS(993), - [aux_sym_arrow_function_token1] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_array] = ACTIONS(993), - [anon_sym_unset] = ACTIONS(993), - [aux_sym_echo_statement_token1] = ACTIONS(993), - [anon_sym_declare] = ACTIONS(993), - [aux_sym_declare_statement_token1] = ACTIONS(993), - [sym_float] = ACTIONS(993), - [aux_sym_try_statement_token1] = ACTIONS(993), - [aux_sym_goto_statement_token1] = ACTIONS(993), - [aux_sym_continue_statement_token1] = ACTIONS(993), - [aux_sym_break_statement_token1] = ACTIONS(993), - [sym_integer] = ACTIONS(993), - [aux_sym_return_statement_token1] = ACTIONS(993), - [aux_sym_throw_expression_token1] = ACTIONS(993), - [aux_sym_while_statement_token1] = ACTIONS(993), - [aux_sym_while_statement_token2] = ACTIONS(993), - [aux_sym_do_statement_token1] = ACTIONS(993), - [aux_sym_for_statement_token1] = ACTIONS(993), - [aux_sym_for_statement_token2] = ACTIONS(993), - [aux_sym_foreach_statement_token1] = ACTIONS(993), - [aux_sym_foreach_statement_token2] = ACTIONS(993), - [aux_sym_if_statement_token1] = ACTIONS(993), - [aux_sym_if_statement_token2] = ACTIONS(993), - [aux_sym_else_if_clause_token1] = ACTIONS(993), - [aux_sym_else_clause_token1] = ACTIONS(993), - [aux_sym_match_expression_token1] = ACTIONS(993), - [aux_sym_match_default_expression_token1] = ACTIONS(993), - [aux_sym_switch_statement_token1] = ACTIONS(993), - [aux_sym_switch_block_token1] = ACTIONS(993), - [aux_sym_case_statement_token1] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_clone] = ACTIONS(993), - [anon_sym_print] = ACTIONS(993), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS_PLUS] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(991), - [sym_shell_command_expression] = ACTIONS(991), - [anon_sym_list] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_self] = ACTIONS(993), - [anon_sym_parent] = ACTIONS(993), - [anon_sym_POUND_LBRACK] = ACTIONS(991), - [sym_string] = ACTIONS(991), - [sym_boolean] = ACTIONS(993), - [sym_null] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(993), - [aux_sym_include_expression_token1] = ACTIONS(993), - [aux_sym_include_once_expression_token1] = ACTIONS(993), - [aux_sym_require_expression_token1] = ACTIONS(993), - [aux_sym_require_once_expression_token1] = ACTIONS(993), + [ts_builtin_sym_end] = ACTIONS(996), + [sym_name] = ACTIONS(998), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(996), + [aux_sym_function_static_declaration_token1] = ACTIONS(998), + [aux_sym_global_declaration_token1] = ACTIONS(998), + [aux_sym_namespace_definition_token1] = ACTIONS(998), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(998), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(998), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(998), + [anon_sym_BSLASH] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [aux_sym_trait_declaration_token1] = ACTIONS(998), + [aux_sym_interface_declaration_token1] = ACTIONS(998), + [aux_sym_class_declaration_token1] = ACTIONS(998), + [aux_sym_final_modifier_token1] = ACTIONS(998), + [aux_sym_abstract_modifier_token1] = ACTIONS(998), + [aux_sym_visibility_modifier_token1] = ACTIONS(998), + [aux_sym_visibility_modifier_token2] = ACTIONS(998), + [aux_sym_visibility_modifier_token3] = ACTIONS(998), + [aux_sym_arrow_function_token1] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_array] = ACTIONS(998), + [anon_sym_unset] = ACTIONS(998), + [aux_sym_echo_statement_token1] = ACTIONS(998), + [anon_sym_declare] = ACTIONS(998), + [aux_sym_declare_statement_token1] = ACTIONS(998), + [sym_float] = ACTIONS(998), + [aux_sym_try_statement_token1] = ACTIONS(998), + [aux_sym_goto_statement_token1] = ACTIONS(998), + [aux_sym_continue_statement_token1] = ACTIONS(998), + [aux_sym_break_statement_token1] = ACTIONS(998), + [sym_integer] = ACTIONS(998), + [aux_sym_return_statement_token1] = ACTIONS(998), + [aux_sym_throw_expression_token1] = ACTIONS(998), + [aux_sym_while_statement_token1] = ACTIONS(998), + [aux_sym_while_statement_token2] = ACTIONS(998), + [aux_sym_do_statement_token1] = ACTIONS(998), + [aux_sym_for_statement_token1] = ACTIONS(998), + [aux_sym_for_statement_token2] = ACTIONS(998), + [aux_sym_foreach_statement_token1] = ACTIONS(998), + [aux_sym_foreach_statement_token2] = ACTIONS(998), + [aux_sym_if_statement_token1] = ACTIONS(998), + [aux_sym_if_statement_token2] = ACTIONS(998), + [aux_sym_else_if_clause_token1] = ACTIONS(998), + [aux_sym_else_clause_token1] = ACTIONS(998), + [aux_sym_match_expression_token1] = ACTIONS(998), + [aux_sym_match_default_expression_token1] = ACTIONS(998), + [aux_sym_switch_statement_token1] = ACTIONS(998), + [aux_sym_switch_block_token1] = ACTIONS(998), + [aux_sym_case_statement_token1] = ACTIONS(998), + [anon_sym_AT] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_clone] = ACTIONS(998), + [anon_sym_print] = ACTIONS(998), + [anon_sym_new] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(996), + [sym_shell_command_expression] = ACTIONS(996), + [anon_sym_list] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_self] = ACTIONS(998), + [anon_sym_parent] = ACTIONS(998), + [anon_sym_POUND_LBRACK] = ACTIONS(996), + [sym_string] = ACTIONS(996), + [sym_boolean] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_yield] = ACTIONS(998), + [aux_sym_include_expression_token1] = ACTIONS(998), + [aux_sym_include_once_expression_token1] = ACTIONS(998), + [aux_sym_require_expression_token1] = ACTIONS(998), + [aux_sym_require_once_expression_token1] = ACTIONS(998), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(991), - [sym_heredoc] = ACTIONS(991), + [sym__automatic_semicolon] = ACTIONS(996), + [sym_heredoc] = ACTIONS(996), }, [429] = { [sym_text_interpolation] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(995), - [sym_name] = ACTIONS(997), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(999), - [aux_sym_function_static_declaration_token1] = ACTIONS(997), - [aux_sym_global_declaration_token1] = ACTIONS(997), - [aux_sym_namespace_definition_token1] = ACTIONS(997), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(997), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(997), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(997), - [anon_sym_BSLASH] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [aux_sym_trait_declaration_token1] = ACTIONS(997), - [aux_sym_interface_declaration_token1] = ACTIONS(997), - [aux_sym_class_declaration_token1] = ACTIONS(997), - [aux_sym_class_modifier_token1] = ACTIONS(997), - [aux_sym_class_modifier_token2] = ACTIONS(997), - [aux_sym_visibility_modifier_token1] = ACTIONS(997), - [aux_sym_visibility_modifier_token2] = ACTIONS(997), - [aux_sym_visibility_modifier_token3] = ACTIONS(997), - [aux_sym_arrow_function_token1] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_array] = ACTIONS(997), - [anon_sym_unset] = ACTIONS(997), - [aux_sym_echo_statement_token1] = ACTIONS(997), - [anon_sym_declare] = ACTIONS(997), - [aux_sym_declare_statement_token1] = ACTIONS(997), - [sym_float] = ACTIONS(997), - [aux_sym_try_statement_token1] = ACTIONS(997), - [aux_sym_goto_statement_token1] = ACTIONS(997), - [aux_sym_continue_statement_token1] = ACTIONS(997), - [aux_sym_break_statement_token1] = ACTIONS(997), - [sym_integer] = ACTIONS(997), - [aux_sym_return_statement_token1] = ACTIONS(997), - [aux_sym_throw_expression_token1] = ACTIONS(997), - [aux_sym_while_statement_token1] = ACTIONS(997), - [aux_sym_while_statement_token2] = ACTIONS(997), - [aux_sym_do_statement_token1] = ACTIONS(997), - [aux_sym_for_statement_token1] = ACTIONS(997), - [aux_sym_for_statement_token2] = ACTIONS(997), - [aux_sym_foreach_statement_token1] = ACTIONS(997), - [aux_sym_foreach_statement_token2] = ACTIONS(997), - [aux_sym_if_statement_token1] = ACTIONS(997), - [aux_sym_if_statement_token2] = ACTIONS(997), - [aux_sym_else_if_clause_token1] = ACTIONS(997), - [aux_sym_else_clause_token1] = ACTIONS(997), - [aux_sym_match_expression_token1] = ACTIONS(997), - [aux_sym_match_default_expression_token1] = ACTIONS(997), - [aux_sym_switch_statement_token1] = ACTIONS(997), - [aux_sym_switch_block_token1] = ACTIONS(997), - [aux_sym_case_statement_token1] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_clone] = ACTIONS(997), - [anon_sym_print] = ACTIONS(997), - [anon_sym_new] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [sym_shell_command_expression] = ACTIONS(995), - [anon_sym_list] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_self] = ACTIONS(997), - [anon_sym_parent] = ACTIONS(997), - [anon_sym_POUND_LBRACK] = ACTIONS(995), - [sym_string] = ACTIONS(995), - [sym_boolean] = ACTIONS(997), - [sym_null] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_yield] = ACTIONS(997), - [aux_sym_include_expression_token1] = ACTIONS(997), - [aux_sym_include_once_expression_token1] = ACTIONS(997), - [aux_sym_require_expression_token1] = ACTIONS(997), - [aux_sym_require_once_expression_token1] = ACTIONS(997), + [ts_builtin_sym_end] = ACTIONS(1000), + [sym_name] = ACTIONS(1002), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1004), + [aux_sym_function_static_declaration_token1] = ACTIONS(1002), + [aux_sym_global_declaration_token1] = ACTIONS(1002), + [aux_sym_namespace_definition_token1] = ACTIONS(1002), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1002), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1002), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1002), + [anon_sym_BSLASH] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [aux_sym_trait_declaration_token1] = ACTIONS(1002), + [aux_sym_interface_declaration_token1] = ACTIONS(1002), + [aux_sym_class_declaration_token1] = ACTIONS(1002), + [aux_sym_final_modifier_token1] = ACTIONS(1002), + [aux_sym_abstract_modifier_token1] = ACTIONS(1002), + [aux_sym_visibility_modifier_token1] = ACTIONS(1002), + [aux_sym_visibility_modifier_token2] = ACTIONS(1002), + [aux_sym_visibility_modifier_token3] = ACTIONS(1002), + [aux_sym_arrow_function_token1] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_array] = ACTIONS(1002), + [anon_sym_unset] = ACTIONS(1002), + [aux_sym_echo_statement_token1] = ACTIONS(1002), + [anon_sym_declare] = ACTIONS(1002), + [aux_sym_declare_statement_token1] = ACTIONS(1002), + [sym_float] = ACTIONS(1002), + [aux_sym_try_statement_token1] = ACTIONS(1002), + [aux_sym_goto_statement_token1] = ACTIONS(1002), + [aux_sym_continue_statement_token1] = ACTIONS(1002), + [aux_sym_break_statement_token1] = ACTIONS(1002), + [sym_integer] = ACTIONS(1002), + [aux_sym_return_statement_token1] = ACTIONS(1002), + [aux_sym_throw_expression_token1] = ACTIONS(1002), + [aux_sym_while_statement_token1] = ACTIONS(1002), + [aux_sym_while_statement_token2] = ACTIONS(1002), + [aux_sym_do_statement_token1] = ACTIONS(1002), + [aux_sym_for_statement_token1] = ACTIONS(1002), + [aux_sym_for_statement_token2] = ACTIONS(1002), + [aux_sym_foreach_statement_token1] = ACTIONS(1002), + [aux_sym_foreach_statement_token2] = ACTIONS(1002), + [aux_sym_if_statement_token1] = ACTIONS(1002), + [aux_sym_if_statement_token2] = ACTIONS(1002), + [aux_sym_else_if_clause_token1] = ACTIONS(1002), + [aux_sym_else_clause_token1] = ACTIONS(1002), + [aux_sym_match_expression_token1] = ACTIONS(1002), + [aux_sym_match_default_expression_token1] = ACTIONS(1002), + [aux_sym_switch_statement_token1] = ACTIONS(1002), + [aux_sym_switch_block_token1] = ACTIONS(1002), + [aux_sym_case_statement_token1] = ACTIONS(1002), + [anon_sym_AT] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_clone] = ACTIONS(1002), + [anon_sym_print] = ACTIONS(1002), + [anon_sym_new] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [sym_shell_command_expression] = ACTIONS(1000), + [anon_sym_list] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_self] = ACTIONS(1002), + [anon_sym_parent] = ACTIONS(1002), + [anon_sym_POUND_LBRACK] = ACTIONS(1000), + [sym_string] = ACTIONS(1000), + [sym_boolean] = ACTIONS(1002), + [sym_null] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [aux_sym_include_expression_token1] = ACTIONS(1002), + [aux_sym_include_once_expression_token1] = ACTIONS(1002), + [aux_sym_require_expression_token1] = ACTIONS(1002), + [aux_sym_require_once_expression_token1] = ACTIONS(1002), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(999), - [sym_heredoc] = ACTIONS(995), + [sym__automatic_semicolon] = ACTIONS(1004), + [sym_heredoc] = ACTIONS(1000), }, [430] = { [sym_text_interpolation] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1001), - [sym_name] = ACTIONS(1003), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1005), - [aux_sym_function_static_declaration_token1] = ACTIONS(1003), - [aux_sym_global_declaration_token1] = ACTIONS(1003), - [aux_sym_namespace_definition_token1] = ACTIONS(1003), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1003), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1003), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1003), - [anon_sym_BSLASH] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [aux_sym_trait_declaration_token1] = ACTIONS(1003), - [aux_sym_interface_declaration_token1] = ACTIONS(1003), - [aux_sym_class_declaration_token1] = ACTIONS(1003), - [aux_sym_class_modifier_token1] = ACTIONS(1003), - [aux_sym_class_modifier_token2] = ACTIONS(1003), - [aux_sym_visibility_modifier_token1] = ACTIONS(1003), - [aux_sym_visibility_modifier_token2] = ACTIONS(1003), - [aux_sym_visibility_modifier_token3] = ACTIONS(1003), - [aux_sym_arrow_function_token1] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_array] = ACTIONS(1003), - [anon_sym_unset] = ACTIONS(1003), - [aux_sym_echo_statement_token1] = ACTIONS(1003), - [anon_sym_declare] = ACTIONS(1003), - [aux_sym_declare_statement_token1] = ACTIONS(1003), - [sym_float] = ACTIONS(1003), - [aux_sym_try_statement_token1] = ACTIONS(1003), - [aux_sym_goto_statement_token1] = ACTIONS(1003), - [aux_sym_continue_statement_token1] = ACTIONS(1003), - [aux_sym_break_statement_token1] = ACTIONS(1003), - [sym_integer] = ACTIONS(1003), - [aux_sym_return_statement_token1] = ACTIONS(1003), - [aux_sym_throw_expression_token1] = ACTIONS(1003), - [aux_sym_while_statement_token1] = ACTIONS(1003), - [aux_sym_while_statement_token2] = ACTIONS(1003), - [aux_sym_do_statement_token1] = ACTIONS(1003), - [aux_sym_for_statement_token1] = ACTIONS(1003), - [aux_sym_for_statement_token2] = ACTIONS(1003), - [aux_sym_foreach_statement_token1] = ACTIONS(1003), - [aux_sym_foreach_statement_token2] = ACTIONS(1003), - [aux_sym_if_statement_token1] = ACTIONS(1003), - [aux_sym_if_statement_token2] = ACTIONS(1003), - [aux_sym_else_if_clause_token1] = ACTIONS(1003), - [aux_sym_else_clause_token1] = ACTIONS(1003), - [aux_sym_match_expression_token1] = ACTIONS(1003), - [aux_sym_match_default_expression_token1] = ACTIONS(1003), - [aux_sym_switch_statement_token1] = ACTIONS(1003), - [aux_sym_switch_block_token1] = ACTIONS(1003), - [aux_sym_case_statement_token1] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_TILDE] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_clone] = ACTIONS(1003), - [anon_sym_print] = ACTIONS(1003), - [anon_sym_new] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [sym_shell_command_expression] = ACTIONS(1001), - [anon_sym_list] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_self] = ACTIONS(1003), - [anon_sym_parent] = ACTIONS(1003), - [anon_sym_POUND_LBRACK] = ACTIONS(1001), - [sym_string] = ACTIONS(1001), - [sym_boolean] = ACTIONS(1003), - [sym_null] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1003), - [aux_sym_include_expression_token1] = ACTIONS(1003), - [aux_sym_include_once_expression_token1] = ACTIONS(1003), - [aux_sym_require_expression_token1] = ACTIONS(1003), - [aux_sym_require_once_expression_token1] = ACTIONS(1003), + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_name] = ACTIONS(1008), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1010), + [aux_sym_function_static_declaration_token1] = ACTIONS(1008), + [aux_sym_global_declaration_token1] = ACTIONS(1008), + [aux_sym_namespace_definition_token1] = ACTIONS(1008), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1008), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1008), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1008), + [anon_sym_BSLASH] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [aux_sym_trait_declaration_token1] = ACTIONS(1008), + [aux_sym_interface_declaration_token1] = ACTIONS(1008), + [aux_sym_class_declaration_token1] = ACTIONS(1008), + [aux_sym_final_modifier_token1] = ACTIONS(1008), + [aux_sym_abstract_modifier_token1] = ACTIONS(1008), + [aux_sym_visibility_modifier_token1] = ACTIONS(1008), + [aux_sym_visibility_modifier_token2] = ACTIONS(1008), + [aux_sym_visibility_modifier_token3] = ACTIONS(1008), + [aux_sym_arrow_function_token1] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_array] = ACTIONS(1008), + [anon_sym_unset] = ACTIONS(1008), + [aux_sym_echo_statement_token1] = ACTIONS(1008), + [anon_sym_declare] = ACTIONS(1008), + [aux_sym_declare_statement_token1] = ACTIONS(1008), + [sym_float] = ACTIONS(1008), + [aux_sym_try_statement_token1] = ACTIONS(1008), + [aux_sym_goto_statement_token1] = ACTIONS(1008), + [aux_sym_continue_statement_token1] = ACTIONS(1008), + [aux_sym_break_statement_token1] = ACTIONS(1008), + [sym_integer] = ACTIONS(1008), + [aux_sym_return_statement_token1] = ACTIONS(1008), + [aux_sym_throw_expression_token1] = ACTIONS(1008), + [aux_sym_while_statement_token1] = ACTIONS(1008), + [aux_sym_while_statement_token2] = ACTIONS(1008), + [aux_sym_do_statement_token1] = ACTIONS(1008), + [aux_sym_for_statement_token1] = ACTIONS(1008), + [aux_sym_for_statement_token2] = ACTIONS(1008), + [aux_sym_foreach_statement_token1] = ACTIONS(1008), + [aux_sym_foreach_statement_token2] = ACTIONS(1008), + [aux_sym_if_statement_token1] = ACTIONS(1008), + [aux_sym_if_statement_token2] = ACTIONS(1008), + [aux_sym_else_if_clause_token1] = ACTIONS(1008), + [aux_sym_else_clause_token1] = ACTIONS(1008), + [aux_sym_match_expression_token1] = ACTIONS(1008), + [aux_sym_match_default_expression_token1] = ACTIONS(1008), + [aux_sym_switch_statement_token1] = ACTIONS(1008), + [aux_sym_switch_block_token1] = ACTIONS(1008), + [aux_sym_case_statement_token1] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_clone] = ACTIONS(1008), + [anon_sym_print] = ACTIONS(1008), + [anon_sym_new] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [sym_shell_command_expression] = ACTIONS(1006), + [anon_sym_list] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_self] = ACTIONS(1008), + [anon_sym_parent] = ACTIONS(1008), + [anon_sym_POUND_LBRACK] = ACTIONS(1006), + [sym_string] = ACTIONS(1006), + [sym_boolean] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_yield] = ACTIONS(1008), + [aux_sym_include_expression_token1] = ACTIONS(1008), + [aux_sym_include_once_expression_token1] = ACTIONS(1008), + [aux_sym_require_expression_token1] = ACTIONS(1008), + [aux_sym_require_once_expression_token1] = ACTIONS(1008), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1005), - [sym_heredoc] = ACTIONS(1001), + [sym__automatic_semicolon] = ACTIONS(1010), + [sym_heredoc] = ACTIONS(1006), }, [431] = { [sym_text_interpolation] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(1007), - [sym_name] = ACTIONS(1009), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1007), - [aux_sym_function_static_declaration_token1] = ACTIONS(1009), - [aux_sym_global_declaration_token1] = ACTIONS(1009), - [aux_sym_namespace_definition_token1] = ACTIONS(1009), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1009), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1009), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1009), - [anon_sym_BSLASH] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [aux_sym_trait_declaration_token1] = ACTIONS(1009), - [aux_sym_interface_declaration_token1] = ACTIONS(1009), - [aux_sym_class_declaration_token1] = ACTIONS(1009), - [aux_sym_class_modifier_token1] = ACTIONS(1009), - [aux_sym_class_modifier_token2] = ACTIONS(1009), - [aux_sym_visibility_modifier_token1] = ACTIONS(1009), - [aux_sym_visibility_modifier_token2] = ACTIONS(1009), - [aux_sym_visibility_modifier_token3] = ACTIONS(1009), - [aux_sym_arrow_function_token1] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_unset] = ACTIONS(1009), - [aux_sym_echo_statement_token1] = ACTIONS(1009), - [anon_sym_declare] = ACTIONS(1009), - [aux_sym_declare_statement_token1] = ACTIONS(1009), - [sym_float] = ACTIONS(1009), - [aux_sym_try_statement_token1] = ACTIONS(1009), - [aux_sym_goto_statement_token1] = ACTIONS(1009), - [aux_sym_continue_statement_token1] = ACTIONS(1009), - [aux_sym_break_statement_token1] = ACTIONS(1009), - [sym_integer] = ACTIONS(1009), - [aux_sym_return_statement_token1] = ACTIONS(1009), - [aux_sym_throw_expression_token1] = ACTIONS(1009), - [aux_sym_while_statement_token1] = ACTIONS(1009), - [aux_sym_while_statement_token2] = ACTIONS(1009), - [aux_sym_do_statement_token1] = ACTIONS(1009), - [aux_sym_for_statement_token1] = ACTIONS(1009), - [aux_sym_for_statement_token2] = ACTIONS(1009), - [aux_sym_foreach_statement_token1] = ACTIONS(1009), - [aux_sym_foreach_statement_token2] = ACTIONS(1009), - [aux_sym_if_statement_token1] = ACTIONS(1009), - [aux_sym_if_statement_token2] = ACTIONS(1009), - [aux_sym_else_if_clause_token1] = ACTIONS(1009), - [aux_sym_else_clause_token1] = ACTIONS(1009), - [aux_sym_match_expression_token1] = ACTIONS(1009), - [aux_sym_match_default_expression_token1] = ACTIONS(1009), - [aux_sym_switch_statement_token1] = ACTIONS(1009), - [aux_sym_switch_block_token1] = ACTIONS(1009), - [aux_sym_case_statement_token1] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_clone] = ACTIONS(1009), - [anon_sym_print] = ACTIONS(1009), - [anon_sym_new] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [sym_shell_command_expression] = ACTIONS(1007), - [anon_sym_list] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_self] = ACTIONS(1009), - [anon_sym_parent] = ACTIONS(1009), - [anon_sym_POUND_LBRACK] = ACTIONS(1007), - [sym_string] = ACTIONS(1007), - [sym_boolean] = ACTIONS(1009), - [sym_null] = ACTIONS(1009), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_yield] = ACTIONS(1009), - [aux_sym_include_expression_token1] = ACTIONS(1009), - [aux_sym_include_once_expression_token1] = ACTIONS(1009), - [aux_sym_require_expression_token1] = ACTIONS(1009), - [aux_sym_require_once_expression_token1] = ACTIONS(1009), + [ts_builtin_sym_end] = ACTIONS(1012), + [sym_name] = ACTIONS(1014), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1012), + [aux_sym_function_static_declaration_token1] = ACTIONS(1014), + [aux_sym_global_declaration_token1] = ACTIONS(1014), + [aux_sym_namespace_definition_token1] = ACTIONS(1014), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1014), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1014), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1014), + [anon_sym_BSLASH] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [aux_sym_trait_declaration_token1] = ACTIONS(1014), + [aux_sym_interface_declaration_token1] = ACTIONS(1014), + [aux_sym_class_declaration_token1] = ACTIONS(1014), + [aux_sym_final_modifier_token1] = ACTIONS(1014), + [aux_sym_abstract_modifier_token1] = ACTIONS(1014), + [aux_sym_visibility_modifier_token1] = ACTIONS(1014), + [aux_sym_visibility_modifier_token2] = ACTIONS(1014), + [aux_sym_visibility_modifier_token3] = ACTIONS(1014), + [aux_sym_arrow_function_token1] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_array] = ACTIONS(1014), + [anon_sym_unset] = ACTIONS(1014), + [aux_sym_echo_statement_token1] = ACTIONS(1014), + [anon_sym_declare] = ACTIONS(1014), + [aux_sym_declare_statement_token1] = ACTIONS(1014), + [sym_float] = ACTIONS(1014), + [aux_sym_try_statement_token1] = ACTIONS(1014), + [aux_sym_goto_statement_token1] = ACTIONS(1014), + [aux_sym_continue_statement_token1] = ACTIONS(1014), + [aux_sym_break_statement_token1] = ACTIONS(1014), + [sym_integer] = ACTIONS(1014), + [aux_sym_return_statement_token1] = ACTIONS(1014), + [aux_sym_throw_expression_token1] = ACTIONS(1014), + [aux_sym_while_statement_token1] = ACTIONS(1014), + [aux_sym_while_statement_token2] = ACTIONS(1014), + [aux_sym_do_statement_token1] = ACTIONS(1014), + [aux_sym_for_statement_token1] = ACTIONS(1014), + [aux_sym_for_statement_token2] = ACTIONS(1014), + [aux_sym_foreach_statement_token1] = ACTIONS(1014), + [aux_sym_foreach_statement_token2] = ACTIONS(1014), + [aux_sym_if_statement_token1] = ACTIONS(1014), + [aux_sym_if_statement_token2] = ACTIONS(1014), + [aux_sym_else_if_clause_token1] = ACTIONS(1014), + [aux_sym_else_clause_token1] = ACTIONS(1014), + [aux_sym_match_expression_token1] = ACTIONS(1014), + [aux_sym_match_default_expression_token1] = ACTIONS(1014), + [aux_sym_switch_statement_token1] = ACTIONS(1014), + [aux_sym_switch_block_token1] = ACTIONS(1014), + [aux_sym_case_statement_token1] = ACTIONS(1014), + [anon_sym_AT] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1012), + [anon_sym_clone] = ACTIONS(1014), + [anon_sym_print] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [sym_shell_command_expression] = ACTIONS(1012), + [anon_sym_list] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_self] = ACTIONS(1014), + [anon_sym_parent] = ACTIONS(1014), + [anon_sym_POUND_LBRACK] = ACTIONS(1012), + [sym_string] = ACTIONS(1012), + [sym_boolean] = ACTIONS(1014), + [sym_null] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_yield] = ACTIONS(1014), + [aux_sym_include_expression_token1] = ACTIONS(1014), + [aux_sym_include_once_expression_token1] = ACTIONS(1014), + [aux_sym_require_expression_token1] = ACTIONS(1014), + [aux_sym_require_once_expression_token1] = ACTIONS(1014), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1007), + [sym_heredoc] = ACTIONS(1012), }, [432] = { [sym_text_interpolation] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_name] = ACTIONS(1013), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1011), - [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_class_declaration_token1] = ACTIONS(1013), - [aux_sym_class_modifier_token1] = ACTIONS(1013), - [aux_sym_class_modifier_token2] = 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), - [anon_sym_array] = ACTIONS(1013), - [anon_sym_unset] = ACTIONS(1013), - [aux_sym_echo_statement_token1] = ACTIONS(1013), - [anon_sym_declare] = ACTIONS(1013), - [aux_sym_declare_statement_token1] = 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), - [aux_sym_case_statement_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), - [anon_sym_clone] = ACTIONS(1013), - [anon_sym_print] = ACTIONS(1013), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1011), - [sym_shell_command_expression] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_parent] = ACTIONS(1013), - [anon_sym_POUND_LBRACK] = ACTIONS(1011), - [sym_string] = ACTIONS(1011), - [sym_boolean] = ACTIONS(1013), - [sym_null] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_yield] = 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), + [ts_builtin_sym_end] = ACTIONS(1016), + [sym_name] = ACTIONS(1018), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1016), + [aux_sym_function_static_declaration_token1] = ACTIONS(1018), + [aux_sym_global_declaration_token1] = ACTIONS(1018), + [aux_sym_namespace_definition_token1] = ACTIONS(1018), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1018), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1018), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1018), + [anon_sym_BSLASH] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [aux_sym_trait_declaration_token1] = ACTIONS(1018), + [aux_sym_interface_declaration_token1] = ACTIONS(1018), + [aux_sym_class_declaration_token1] = ACTIONS(1018), + [aux_sym_final_modifier_token1] = ACTIONS(1018), + [aux_sym_abstract_modifier_token1] = ACTIONS(1018), + [aux_sym_visibility_modifier_token1] = ACTIONS(1018), + [aux_sym_visibility_modifier_token2] = ACTIONS(1018), + [aux_sym_visibility_modifier_token3] = ACTIONS(1018), + [aux_sym_arrow_function_token1] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_array] = ACTIONS(1018), + [anon_sym_unset] = ACTIONS(1018), + [aux_sym_echo_statement_token1] = ACTIONS(1018), + [anon_sym_declare] = ACTIONS(1018), + [aux_sym_declare_statement_token1] = ACTIONS(1018), + [sym_float] = ACTIONS(1018), + [aux_sym_try_statement_token1] = ACTIONS(1018), + [aux_sym_goto_statement_token1] = ACTIONS(1018), + [aux_sym_continue_statement_token1] = ACTIONS(1018), + [aux_sym_break_statement_token1] = ACTIONS(1018), + [sym_integer] = ACTIONS(1018), + [aux_sym_return_statement_token1] = ACTIONS(1018), + [aux_sym_throw_expression_token1] = ACTIONS(1018), + [aux_sym_while_statement_token1] = ACTIONS(1018), + [aux_sym_while_statement_token2] = ACTIONS(1018), + [aux_sym_do_statement_token1] = ACTIONS(1018), + [aux_sym_for_statement_token1] = ACTIONS(1018), + [aux_sym_for_statement_token2] = ACTIONS(1018), + [aux_sym_foreach_statement_token1] = ACTIONS(1018), + [aux_sym_foreach_statement_token2] = ACTIONS(1018), + [aux_sym_if_statement_token1] = ACTIONS(1018), + [aux_sym_if_statement_token2] = ACTIONS(1018), + [aux_sym_else_if_clause_token1] = ACTIONS(1018), + [aux_sym_else_clause_token1] = ACTIONS(1018), + [aux_sym_match_expression_token1] = ACTIONS(1018), + [aux_sym_match_default_expression_token1] = ACTIONS(1018), + [aux_sym_switch_statement_token1] = ACTIONS(1018), + [aux_sym_switch_block_token1] = ACTIONS(1018), + [aux_sym_case_statement_token1] = ACTIONS(1018), + [anon_sym_AT] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1016), + [anon_sym_BANG] = ACTIONS(1016), + [anon_sym_clone] = ACTIONS(1018), + [anon_sym_print] = ACTIONS(1018), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1016), + [sym_shell_command_expression] = ACTIONS(1016), + [anon_sym_list] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_self] = ACTIONS(1018), + [anon_sym_parent] = ACTIONS(1018), + [anon_sym_POUND_LBRACK] = ACTIONS(1016), + [sym_string] = ACTIONS(1016), + [sym_boolean] = ACTIONS(1018), + [sym_null] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1018), + [aux_sym_include_expression_token1] = ACTIONS(1018), + [aux_sym_include_once_expression_token1] = ACTIONS(1018), + [aux_sym_require_expression_token1] = ACTIONS(1018), + [aux_sym_require_once_expression_token1] = ACTIONS(1018), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1011), + [sym_heredoc] = ACTIONS(1016), }, [433] = { [sym_text_interpolation] = STATE(433), - [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_class_declaration_token1] = ACTIONS(906), - [aux_sym_class_modifier_token1] = ACTIONS(906), - [aux_sym_class_modifier_token2] = 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), - [anon_sym_array] = ACTIONS(906), - [anon_sym_unset] = ACTIONS(906), - [aux_sym_echo_statement_token1] = ACTIONS(906), - [anon_sym_declare] = ACTIONS(906), - [aux_sym_declare_statement_token1] = ACTIONS(906), - [sym_float] = ACTIONS(906), - [aux_sym_try_statement_token1] = ACTIONS(906), - [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), - [aux_sym_case_statement_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), - [anon_sym_clone] = ACTIONS(906), - [anon_sym_print] = ACTIONS(906), - [anon_sym_new] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [sym_shell_command_expression] = ACTIONS(904), - [anon_sym_list] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_self] = ACTIONS(906), - [anon_sym_parent] = ACTIONS(906), - [anon_sym_POUND_LBRACK] = ACTIONS(904), - [sym_string] = ACTIONS(904), - [sym_boolean] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(904), - [anon_sym_yield] = 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), + [ts_builtin_sym_end] = ACTIONS(928), + [sym_name] = ACTIONS(930), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(928), + [aux_sym_function_static_declaration_token1] = ACTIONS(930), + [aux_sym_global_declaration_token1] = ACTIONS(930), + [aux_sym_namespace_definition_token1] = ACTIONS(930), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(930), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(930), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(930), + [anon_sym_BSLASH] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(928), + [aux_sym_trait_declaration_token1] = ACTIONS(930), + [aux_sym_interface_declaration_token1] = ACTIONS(930), + [aux_sym_class_declaration_token1] = ACTIONS(930), + [aux_sym_final_modifier_token1] = ACTIONS(930), + [aux_sym_abstract_modifier_token1] = ACTIONS(930), + [aux_sym_visibility_modifier_token1] = ACTIONS(930), + [aux_sym_visibility_modifier_token2] = ACTIONS(930), + [aux_sym_visibility_modifier_token3] = ACTIONS(930), + [aux_sym_arrow_function_token1] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_array] = ACTIONS(930), + [anon_sym_unset] = ACTIONS(930), + [aux_sym_echo_statement_token1] = ACTIONS(930), + [anon_sym_declare] = ACTIONS(930), + [aux_sym_declare_statement_token1] = ACTIONS(930), + [sym_float] = ACTIONS(930), + [aux_sym_try_statement_token1] = ACTIONS(930), + [aux_sym_goto_statement_token1] = ACTIONS(930), + [aux_sym_continue_statement_token1] = ACTIONS(930), + [aux_sym_break_statement_token1] = ACTIONS(930), + [sym_integer] = ACTIONS(930), + [aux_sym_return_statement_token1] = ACTIONS(930), + [aux_sym_throw_expression_token1] = ACTIONS(930), + [aux_sym_while_statement_token1] = ACTIONS(930), + [aux_sym_while_statement_token2] = ACTIONS(930), + [aux_sym_do_statement_token1] = ACTIONS(930), + [aux_sym_for_statement_token1] = ACTIONS(930), + [aux_sym_for_statement_token2] = ACTIONS(930), + [aux_sym_foreach_statement_token1] = ACTIONS(930), + [aux_sym_foreach_statement_token2] = ACTIONS(930), + [aux_sym_if_statement_token1] = ACTIONS(930), + [aux_sym_if_statement_token2] = ACTIONS(930), + [aux_sym_else_if_clause_token1] = ACTIONS(930), + [aux_sym_else_clause_token1] = ACTIONS(930), + [aux_sym_match_expression_token1] = ACTIONS(930), + [aux_sym_match_default_expression_token1] = ACTIONS(930), + [aux_sym_switch_statement_token1] = ACTIONS(930), + [aux_sym_switch_block_token1] = ACTIONS(930), + [aux_sym_case_statement_token1] = ACTIONS(930), + [anon_sym_AT] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_clone] = ACTIONS(930), + [anon_sym_print] = ACTIONS(930), + [anon_sym_new] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [sym_shell_command_expression] = ACTIONS(928), + [anon_sym_list] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_self] = ACTIONS(930), + [anon_sym_parent] = ACTIONS(930), + [anon_sym_POUND_LBRACK] = ACTIONS(928), + [sym_string] = ACTIONS(928), + [sym_boolean] = ACTIONS(930), + [sym_null] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(928), + [anon_sym_yield] = ACTIONS(930), + [aux_sym_include_expression_token1] = ACTIONS(930), + [aux_sym_include_once_expression_token1] = ACTIONS(930), + [aux_sym_require_expression_token1] = ACTIONS(930), + [aux_sym_require_once_expression_token1] = ACTIONS(930), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(904), + [sym_heredoc] = ACTIONS(928), }, [434] = { [sym_text_interpolation] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(1015), - [sym_name] = ACTIONS(1017), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1015), - [aux_sym_function_static_declaration_token1] = ACTIONS(1017), - [aux_sym_global_declaration_token1] = ACTIONS(1017), - [aux_sym_namespace_definition_token1] = ACTIONS(1017), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1017), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1017), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1017), - [anon_sym_BSLASH] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [aux_sym_trait_declaration_token1] = ACTIONS(1017), - [aux_sym_interface_declaration_token1] = ACTIONS(1017), - [aux_sym_class_declaration_token1] = ACTIONS(1017), - [aux_sym_class_modifier_token1] = ACTIONS(1017), - [aux_sym_class_modifier_token2] = ACTIONS(1017), - [aux_sym_visibility_modifier_token1] = ACTIONS(1017), - [aux_sym_visibility_modifier_token2] = ACTIONS(1017), - [aux_sym_visibility_modifier_token3] = ACTIONS(1017), - [aux_sym_arrow_function_token1] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_array] = ACTIONS(1017), - [anon_sym_unset] = ACTIONS(1017), - [aux_sym_echo_statement_token1] = ACTIONS(1017), - [anon_sym_declare] = ACTIONS(1017), - [aux_sym_declare_statement_token1] = ACTIONS(1017), - [sym_float] = ACTIONS(1017), - [aux_sym_try_statement_token1] = ACTIONS(1017), - [aux_sym_goto_statement_token1] = ACTIONS(1017), - [aux_sym_continue_statement_token1] = ACTIONS(1017), - [aux_sym_break_statement_token1] = ACTIONS(1017), - [sym_integer] = ACTIONS(1017), - [aux_sym_return_statement_token1] = ACTIONS(1017), - [aux_sym_throw_expression_token1] = ACTIONS(1017), - [aux_sym_while_statement_token1] = ACTIONS(1017), - [aux_sym_while_statement_token2] = ACTIONS(1017), - [aux_sym_do_statement_token1] = ACTIONS(1017), - [aux_sym_for_statement_token1] = ACTIONS(1017), - [aux_sym_for_statement_token2] = ACTIONS(1017), - [aux_sym_foreach_statement_token1] = ACTIONS(1017), - [aux_sym_foreach_statement_token2] = ACTIONS(1017), - [aux_sym_if_statement_token1] = ACTIONS(1017), - [aux_sym_if_statement_token2] = ACTIONS(1017), - [aux_sym_else_if_clause_token1] = ACTIONS(1017), - [aux_sym_else_clause_token1] = ACTIONS(1017), - [aux_sym_match_expression_token1] = ACTIONS(1017), - [aux_sym_match_default_expression_token1] = ACTIONS(1017), - [aux_sym_switch_statement_token1] = ACTIONS(1017), - [aux_sym_switch_block_token1] = ACTIONS(1017), - [aux_sym_case_statement_token1] = ACTIONS(1017), - [anon_sym_AT] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_clone] = ACTIONS(1017), - [anon_sym_print] = ACTIONS(1017), - [anon_sym_new] = ACTIONS(1017), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [sym_shell_command_expression] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_self] = ACTIONS(1017), - [anon_sym_parent] = ACTIONS(1017), - [anon_sym_POUND_LBRACK] = ACTIONS(1015), - [sym_string] = ACTIONS(1015), - [sym_boolean] = ACTIONS(1017), - [sym_null] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_yield] = ACTIONS(1017), - [aux_sym_include_expression_token1] = ACTIONS(1017), - [aux_sym_include_once_expression_token1] = ACTIONS(1017), - [aux_sym_require_expression_token1] = ACTIONS(1017), - [aux_sym_require_once_expression_token1] = ACTIONS(1017), + [ts_builtin_sym_end] = ACTIONS(1020), + [sym_name] = ACTIONS(1022), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1020), + [aux_sym_function_static_declaration_token1] = ACTIONS(1022), + [aux_sym_global_declaration_token1] = ACTIONS(1022), + [aux_sym_namespace_definition_token1] = ACTIONS(1022), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1022), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1022), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1022), + [anon_sym_BSLASH] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [aux_sym_trait_declaration_token1] = ACTIONS(1022), + [aux_sym_interface_declaration_token1] = ACTIONS(1022), + [aux_sym_class_declaration_token1] = ACTIONS(1022), + [aux_sym_final_modifier_token1] = ACTIONS(1022), + [aux_sym_abstract_modifier_token1] = ACTIONS(1022), + [aux_sym_visibility_modifier_token1] = ACTIONS(1022), + [aux_sym_visibility_modifier_token2] = ACTIONS(1022), + [aux_sym_visibility_modifier_token3] = ACTIONS(1022), + [aux_sym_arrow_function_token1] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_array] = ACTIONS(1022), + [anon_sym_unset] = ACTIONS(1022), + [aux_sym_echo_statement_token1] = ACTIONS(1022), + [anon_sym_declare] = ACTIONS(1022), + [aux_sym_declare_statement_token1] = ACTIONS(1022), + [sym_float] = ACTIONS(1022), + [aux_sym_try_statement_token1] = ACTIONS(1022), + [aux_sym_goto_statement_token1] = ACTIONS(1022), + [aux_sym_continue_statement_token1] = ACTIONS(1022), + [aux_sym_break_statement_token1] = ACTIONS(1022), + [sym_integer] = ACTIONS(1022), + [aux_sym_return_statement_token1] = ACTIONS(1022), + [aux_sym_throw_expression_token1] = ACTIONS(1022), + [aux_sym_while_statement_token1] = ACTIONS(1022), + [aux_sym_while_statement_token2] = ACTIONS(1022), + [aux_sym_do_statement_token1] = ACTIONS(1022), + [aux_sym_for_statement_token1] = ACTIONS(1022), + [aux_sym_for_statement_token2] = ACTIONS(1022), + [aux_sym_foreach_statement_token1] = ACTIONS(1022), + [aux_sym_foreach_statement_token2] = ACTIONS(1022), + [aux_sym_if_statement_token1] = ACTIONS(1022), + [aux_sym_if_statement_token2] = ACTIONS(1022), + [aux_sym_else_if_clause_token1] = ACTIONS(1022), + [aux_sym_else_clause_token1] = ACTIONS(1022), + [aux_sym_match_expression_token1] = ACTIONS(1022), + [aux_sym_match_default_expression_token1] = ACTIONS(1022), + [aux_sym_switch_statement_token1] = ACTIONS(1022), + [aux_sym_switch_block_token1] = ACTIONS(1022), + [aux_sym_case_statement_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_clone] = ACTIONS(1022), + [anon_sym_print] = ACTIONS(1022), + [anon_sym_new] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [sym_shell_command_expression] = ACTIONS(1020), + [anon_sym_list] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_self] = ACTIONS(1022), + [anon_sym_parent] = ACTIONS(1022), + [anon_sym_POUND_LBRACK] = ACTIONS(1020), + [sym_string] = ACTIONS(1020), + [sym_boolean] = ACTIONS(1022), + [sym_null] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_yield] = ACTIONS(1022), + [aux_sym_include_expression_token1] = ACTIONS(1022), + [aux_sym_include_once_expression_token1] = ACTIONS(1022), + [aux_sym_require_expression_token1] = ACTIONS(1022), + [aux_sym_require_once_expression_token1] = ACTIONS(1022), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1015), + [sym_heredoc] = ACTIONS(1020), }, [435] = { [sym_text_interpolation] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1019), - [sym_name] = ACTIONS(1021), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1019), - [aux_sym_function_static_declaration_token1] = ACTIONS(1021), - [aux_sym_global_declaration_token1] = ACTIONS(1021), - [aux_sym_namespace_definition_token1] = ACTIONS(1021), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1021), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1021), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1021), - [anon_sym_BSLASH] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [aux_sym_trait_declaration_token1] = ACTIONS(1021), - [aux_sym_interface_declaration_token1] = ACTIONS(1021), - [aux_sym_class_declaration_token1] = ACTIONS(1021), - [aux_sym_class_modifier_token1] = ACTIONS(1021), - [aux_sym_class_modifier_token2] = ACTIONS(1021), - [aux_sym_visibility_modifier_token1] = ACTIONS(1021), - [aux_sym_visibility_modifier_token2] = ACTIONS(1021), - [aux_sym_visibility_modifier_token3] = ACTIONS(1021), - [aux_sym_arrow_function_token1] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(1021), - [anon_sym_unset] = ACTIONS(1021), - [aux_sym_echo_statement_token1] = ACTIONS(1021), - [anon_sym_declare] = ACTIONS(1021), - [aux_sym_declare_statement_token1] = ACTIONS(1021), - [sym_float] = ACTIONS(1021), - [aux_sym_try_statement_token1] = ACTIONS(1021), - [aux_sym_goto_statement_token1] = ACTIONS(1021), - [aux_sym_continue_statement_token1] = ACTIONS(1021), - [aux_sym_break_statement_token1] = ACTIONS(1021), - [sym_integer] = ACTIONS(1021), - [aux_sym_return_statement_token1] = ACTIONS(1021), - [aux_sym_throw_expression_token1] = ACTIONS(1021), - [aux_sym_while_statement_token1] = ACTIONS(1021), - [aux_sym_while_statement_token2] = ACTIONS(1021), - [aux_sym_do_statement_token1] = ACTIONS(1021), - [aux_sym_for_statement_token1] = ACTIONS(1021), - [aux_sym_for_statement_token2] = ACTIONS(1021), - [aux_sym_foreach_statement_token1] = ACTIONS(1021), - [aux_sym_foreach_statement_token2] = ACTIONS(1021), - [aux_sym_if_statement_token1] = ACTIONS(1021), - [aux_sym_if_statement_token2] = ACTIONS(1021), - [aux_sym_else_if_clause_token1] = ACTIONS(1021), - [aux_sym_else_clause_token1] = ACTIONS(1021), - [aux_sym_match_expression_token1] = ACTIONS(1021), - [aux_sym_match_default_expression_token1] = ACTIONS(1021), - [aux_sym_switch_statement_token1] = ACTIONS(1021), - [aux_sym_switch_block_token1] = ACTIONS(1021), - [aux_sym_case_statement_token1] = ACTIONS(1021), - [anon_sym_AT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_clone] = ACTIONS(1021), - [anon_sym_print] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_PLUS_PLUS] = ACTIONS(1019), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [sym_shell_command_expression] = ACTIONS(1019), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_self] = ACTIONS(1021), - [anon_sym_parent] = ACTIONS(1021), - [anon_sym_POUND_LBRACK] = ACTIONS(1019), - [sym_string] = ACTIONS(1019), - [sym_boolean] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [aux_sym_include_expression_token1] = ACTIONS(1021), - [aux_sym_include_once_expression_token1] = ACTIONS(1021), - [aux_sym_require_expression_token1] = ACTIONS(1021), - [aux_sym_require_once_expression_token1] = ACTIONS(1021), + [ts_builtin_sym_end] = ACTIONS(1024), + [sym_name] = ACTIONS(1026), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1024), + [aux_sym_function_static_declaration_token1] = ACTIONS(1026), + [aux_sym_global_declaration_token1] = ACTIONS(1026), + [aux_sym_namespace_definition_token1] = ACTIONS(1026), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1026), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1026), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1026), + [anon_sym_BSLASH] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [aux_sym_trait_declaration_token1] = ACTIONS(1026), + [aux_sym_interface_declaration_token1] = ACTIONS(1026), + [aux_sym_class_declaration_token1] = ACTIONS(1026), + [aux_sym_final_modifier_token1] = ACTIONS(1026), + [aux_sym_abstract_modifier_token1] = ACTIONS(1026), + [aux_sym_visibility_modifier_token1] = ACTIONS(1026), + [aux_sym_visibility_modifier_token2] = ACTIONS(1026), + [aux_sym_visibility_modifier_token3] = ACTIONS(1026), + [aux_sym_arrow_function_token1] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_array] = ACTIONS(1026), + [anon_sym_unset] = ACTIONS(1026), + [aux_sym_echo_statement_token1] = ACTIONS(1026), + [anon_sym_declare] = ACTIONS(1026), + [aux_sym_declare_statement_token1] = ACTIONS(1026), + [sym_float] = ACTIONS(1026), + [aux_sym_try_statement_token1] = ACTIONS(1026), + [aux_sym_goto_statement_token1] = ACTIONS(1026), + [aux_sym_continue_statement_token1] = ACTIONS(1026), + [aux_sym_break_statement_token1] = ACTIONS(1026), + [sym_integer] = ACTIONS(1026), + [aux_sym_return_statement_token1] = ACTIONS(1026), + [aux_sym_throw_expression_token1] = ACTIONS(1026), + [aux_sym_while_statement_token1] = ACTIONS(1026), + [aux_sym_while_statement_token2] = ACTIONS(1026), + [aux_sym_do_statement_token1] = ACTIONS(1026), + [aux_sym_for_statement_token1] = ACTIONS(1026), + [aux_sym_for_statement_token2] = ACTIONS(1026), + [aux_sym_foreach_statement_token1] = ACTIONS(1026), + [aux_sym_foreach_statement_token2] = ACTIONS(1026), + [aux_sym_if_statement_token1] = ACTIONS(1026), + [aux_sym_if_statement_token2] = ACTIONS(1026), + [aux_sym_else_if_clause_token1] = ACTIONS(1026), + [aux_sym_else_clause_token1] = ACTIONS(1026), + [aux_sym_match_expression_token1] = ACTIONS(1026), + [aux_sym_match_default_expression_token1] = ACTIONS(1026), + [aux_sym_switch_statement_token1] = ACTIONS(1026), + [aux_sym_switch_block_token1] = ACTIONS(1026), + [aux_sym_case_statement_token1] = ACTIONS(1026), + [anon_sym_AT] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_clone] = ACTIONS(1026), + [anon_sym_print] = ACTIONS(1026), + [anon_sym_new] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [sym_shell_command_expression] = ACTIONS(1024), + [anon_sym_list] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_self] = ACTIONS(1026), + [anon_sym_parent] = ACTIONS(1026), + [anon_sym_POUND_LBRACK] = ACTIONS(1024), + [sym_string] = ACTIONS(1024), + [sym_boolean] = ACTIONS(1026), + [sym_null] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1026), + [aux_sym_include_expression_token1] = ACTIONS(1026), + [aux_sym_include_once_expression_token1] = ACTIONS(1026), + [aux_sym_require_expression_token1] = ACTIONS(1026), + [aux_sym_require_once_expression_token1] = ACTIONS(1026), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1019), + [sym_heredoc] = ACTIONS(1024), }, [436] = { [sym_text_interpolation] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_name] = ACTIONS(1025), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1023), - [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_class_declaration_token1] = ACTIONS(1025), - [aux_sym_class_modifier_token1] = ACTIONS(1025), - [aux_sym_class_modifier_token2] = 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), - [anon_sym_array] = ACTIONS(1025), - [anon_sym_unset] = ACTIONS(1025), - [aux_sym_echo_statement_token1] = ACTIONS(1025), - [anon_sym_declare] = ACTIONS(1025), - [aux_sym_declare_statement_token1] = 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), - [aux_sym_case_statement_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), - [anon_sym_clone] = ACTIONS(1025), - [anon_sym_print] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1025), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [sym_shell_command_expression] = ACTIONS(1023), - [anon_sym_list] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_self] = ACTIONS(1025), - [anon_sym_parent] = ACTIONS(1025), - [anon_sym_POUND_LBRACK] = ACTIONS(1023), - [sym_string] = ACTIONS(1023), - [sym_boolean] = ACTIONS(1025), - [sym_null] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_yield] = 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), + [ts_builtin_sym_end] = ACTIONS(1028), + [sym_name] = ACTIONS(1030), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1028), + [aux_sym_function_static_declaration_token1] = ACTIONS(1030), + [aux_sym_global_declaration_token1] = ACTIONS(1030), + [aux_sym_namespace_definition_token1] = ACTIONS(1030), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1030), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1030), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1030), + [anon_sym_BSLASH] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [aux_sym_trait_declaration_token1] = ACTIONS(1030), + [aux_sym_interface_declaration_token1] = ACTIONS(1030), + [aux_sym_class_declaration_token1] = ACTIONS(1030), + [aux_sym_final_modifier_token1] = ACTIONS(1030), + [aux_sym_abstract_modifier_token1] = ACTIONS(1030), + [aux_sym_visibility_modifier_token1] = ACTIONS(1030), + [aux_sym_visibility_modifier_token2] = ACTIONS(1030), + [aux_sym_visibility_modifier_token3] = ACTIONS(1030), + [aux_sym_arrow_function_token1] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_array] = ACTIONS(1030), + [anon_sym_unset] = ACTIONS(1030), + [aux_sym_echo_statement_token1] = ACTIONS(1030), + [anon_sym_declare] = ACTIONS(1030), + [aux_sym_declare_statement_token1] = ACTIONS(1030), + [sym_float] = ACTIONS(1030), + [aux_sym_try_statement_token1] = ACTIONS(1030), + [aux_sym_goto_statement_token1] = ACTIONS(1030), + [aux_sym_continue_statement_token1] = ACTIONS(1030), + [aux_sym_break_statement_token1] = ACTIONS(1030), + [sym_integer] = ACTIONS(1030), + [aux_sym_return_statement_token1] = ACTIONS(1030), + [aux_sym_throw_expression_token1] = ACTIONS(1030), + [aux_sym_while_statement_token1] = ACTIONS(1030), + [aux_sym_while_statement_token2] = ACTIONS(1030), + [aux_sym_do_statement_token1] = ACTIONS(1030), + [aux_sym_for_statement_token1] = ACTIONS(1030), + [aux_sym_for_statement_token2] = ACTIONS(1030), + [aux_sym_foreach_statement_token1] = ACTIONS(1030), + [aux_sym_foreach_statement_token2] = ACTIONS(1030), + [aux_sym_if_statement_token1] = ACTIONS(1030), + [aux_sym_if_statement_token2] = ACTIONS(1030), + [aux_sym_else_if_clause_token1] = ACTIONS(1030), + [aux_sym_else_clause_token1] = ACTIONS(1030), + [aux_sym_match_expression_token1] = ACTIONS(1030), + [aux_sym_match_default_expression_token1] = ACTIONS(1030), + [aux_sym_switch_statement_token1] = ACTIONS(1030), + [aux_sym_switch_block_token1] = ACTIONS(1030), + [aux_sym_case_statement_token1] = ACTIONS(1030), + [anon_sym_AT] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_clone] = ACTIONS(1030), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_new] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [sym_shell_command_expression] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_self] = ACTIONS(1030), + [anon_sym_parent] = ACTIONS(1030), + [anon_sym_POUND_LBRACK] = ACTIONS(1028), + [sym_string] = ACTIONS(1028), + [sym_boolean] = ACTIONS(1030), + [sym_null] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_yield] = ACTIONS(1030), + [aux_sym_include_expression_token1] = ACTIONS(1030), + [aux_sym_include_once_expression_token1] = ACTIONS(1030), + [aux_sym_require_expression_token1] = ACTIONS(1030), + [aux_sym_require_once_expression_token1] = ACTIONS(1030), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1023), + [sym_heredoc] = ACTIONS(1028), }, [437] = { [sym_text_interpolation] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1027), - [sym_name] = ACTIONS(1029), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1027), - [aux_sym_function_static_declaration_token1] = ACTIONS(1029), - [aux_sym_global_declaration_token1] = ACTIONS(1029), - [aux_sym_namespace_definition_token1] = ACTIONS(1029), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1029), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1029), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1029), - [anon_sym_BSLASH] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [aux_sym_trait_declaration_token1] = ACTIONS(1029), - [aux_sym_interface_declaration_token1] = ACTIONS(1029), - [aux_sym_class_declaration_token1] = ACTIONS(1029), - [aux_sym_class_modifier_token1] = ACTIONS(1029), - [aux_sym_class_modifier_token2] = ACTIONS(1029), - [aux_sym_visibility_modifier_token1] = ACTIONS(1029), - [aux_sym_visibility_modifier_token2] = ACTIONS(1029), - [aux_sym_visibility_modifier_token3] = ACTIONS(1029), - [aux_sym_arrow_function_token1] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_array] = ACTIONS(1029), - [anon_sym_unset] = ACTIONS(1029), - [aux_sym_echo_statement_token1] = ACTIONS(1029), - [anon_sym_declare] = ACTIONS(1029), - [aux_sym_declare_statement_token1] = ACTIONS(1029), - [sym_float] = ACTIONS(1029), - [aux_sym_try_statement_token1] = ACTIONS(1029), - [aux_sym_goto_statement_token1] = ACTIONS(1029), - [aux_sym_continue_statement_token1] = ACTIONS(1029), - [aux_sym_break_statement_token1] = ACTIONS(1029), - [sym_integer] = ACTIONS(1029), - [aux_sym_return_statement_token1] = ACTIONS(1029), - [aux_sym_throw_expression_token1] = ACTIONS(1029), - [aux_sym_while_statement_token1] = ACTIONS(1029), - [aux_sym_while_statement_token2] = ACTIONS(1029), - [aux_sym_do_statement_token1] = ACTIONS(1029), - [aux_sym_for_statement_token1] = ACTIONS(1029), - [aux_sym_for_statement_token2] = ACTIONS(1029), - [aux_sym_foreach_statement_token1] = ACTIONS(1029), - [aux_sym_foreach_statement_token2] = ACTIONS(1029), - [aux_sym_if_statement_token1] = ACTIONS(1029), - [aux_sym_if_statement_token2] = ACTIONS(1029), - [aux_sym_else_if_clause_token1] = ACTIONS(1029), - [aux_sym_else_clause_token1] = ACTIONS(1029), - [aux_sym_match_expression_token1] = ACTIONS(1029), - [aux_sym_match_default_expression_token1] = ACTIONS(1029), - [aux_sym_switch_statement_token1] = ACTIONS(1029), - [aux_sym_switch_block_token1] = ACTIONS(1029), - [aux_sym_case_statement_token1] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_clone] = ACTIONS(1029), - [anon_sym_print] = ACTIONS(1029), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1027), - [anon_sym_DASH_DASH] = ACTIONS(1027), - [sym_shell_command_expression] = ACTIONS(1027), - [anon_sym_list] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_self] = ACTIONS(1029), - [anon_sym_parent] = ACTIONS(1029), - [anon_sym_POUND_LBRACK] = ACTIONS(1027), - [sym_string] = ACTIONS(1027), - [sym_boolean] = ACTIONS(1029), - [sym_null] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_yield] = ACTIONS(1029), - [aux_sym_include_expression_token1] = ACTIONS(1029), - [aux_sym_include_once_expression_token1] = ACTIONS(1029), - [aux_sym_require_expression_token1] = ACTIONS(1029), - [aux_sym_require_once_expression_token1] = ACTIONS(1029), + [ts_builtin_sym_end] = ACTIONS(1032), + [sym_name] = ACTIONS(1034), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1032), + [aux_sym_function_static_declaration_token1] = ACTIONS(1034), + [aux_sym_global_declaration_token1] = ACTIONS(1034), + [aux_sym_namespace_definition_token1] = ACTIONS(1034), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1034), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1034), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1034), + [anon_sym_BSLASH] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [aux_sym_trait_declaration_token1] = ACTIONS(1034), + [aux_sym_interface_declaration_token1] = ACTIONS(1034), + [aux_sym_class_declaration_token1] = ACTIONS(1034), + [aux_sym_final_modifier_token1] = ACTIONS(1034), + [aux_sym_abstract_modifier_token1] = ACTIONS(1034), + [aux_sym_visibility_modifier_token1] = ACTIONS(1034), + [aux_sym_visibility_modifier_token2] = ACTIONS(1034), + [aux_sym_visibility_modifier_token3] = ACTIONS(1034), + [aux_sym_arrow_function_token1] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_array] = ACTIONS(1034), + [anon_sym_unset] = ACTIONS(1034), + [aux_sym_echo_statement_token1] = ACTIONS(1034), + [anon_sym_declare] = ACTIONS(1034), + [aux_sym_declare_statement_token1] = ACTIONS(1034), + [sym_float] = ACTIONS(1034), + [aux_sym_try_statement_token1] = ACTIONS(1034), + [aux_sym_goto_statement_token1] = ACTIONS(1034), + [aux_sym_continue_statement_token1] = ACTIONS(1034), + [aux_sym_break_statement_token1] = ACTIONS(1034), + [sym_integer] = ACTIONS(1034), + [aux_sym_return_statement_token1] = ACTIONS(1034), + [aux_sym_throw_expression_token1] = ACTIONS(1034), + [aux_sym_while_statement_token1] = ACTIONS(1034), + [aux_sym_while_statement_token2] = ACTIONS(1034), + [aux_sym_do_statement_token1] = ACTIONS(1034), + [aux_sym_for_statement_token1] = ACTIONS(1034), + [aux_sym_for_statement_token2] = ACTIONS(1034), + [aux_sym_foreach_statement_token1] = ACTIONS(1034), + [aux_sym_foreach_statement_token2] = ACTIONS(1034), + [aux_sym_if_statement_token1] = ACTIONS(1034), + [aux_sym_if_statement_token2] = ACTIONS(1034), + [aux_sym_else_if_clause_token1] = ACTIONS(1034), + [aux_sym_else_clause_token1] = ACTIONS(1034), + [aux_sym_match_expression_token1] = ACTIONS(1034), + [aux_sym_match_default_expression_token1] = ACTIONS(1034), + [aux_sym_switch_statement_token1] = ACTIONS(1034), + [aux_sym_switch_block_token1] = ACTIONS(1034), + [aux_sym_case_statement_token1] = ACTIONS(1034), + [anon_sym_AT] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_clone] = ACTIONS(1034), + [anon_sym_print] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [sym_shell_command_expression] = ACTIONS(1032), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_self] = ACTIONS(1034), + [anon_sym_parent] = ACTIONS(1034), + [anon_sym_POUND_LBRACK] = ACTIONS(1032), + [sym_string] = ACTIONS(1032), + [sym_boolean] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_yield] = ACTIONS(1034), + [aux_sym_include_expression_token1] = ACTIONS(1034), + [aux_sym_include_once_expression_token1] = ACTIONS(1034), + [aux_sym_require_expression_token1] = ACTIONS(1034), + [aux_sym_require_once_expression_token1] = ACTIONS(1034), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1027), + [sym_heredoc] = ACTIONS(1032), }, [438] = { [sym_text_interpolation] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(1031), - [sym_name] = ACTIONS(1033), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1031), - [aux_sym_function_static_declaration_token1] = ACTIONS(1033), - [aux_sym_global_declaration_token1] = ACTIONS(1033), - [aux_sym_namespace_definition_token1] = ACTIONS(1033), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1033), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1033), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1033), - [anon_sym_BSLASH] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [aux_sym_trait_declaration_token1] = ACTIONS(1033), - [aux_sym_interface_declaration_token1] = ACTIONS(1033), - [aux_sym_class_declaration_token1] = ACTIONS(1033), - [aux_sym_class_modifier_token1] = ACTIONS(1033), - [aux_sym_class_modifier_token2] = ACTIONS(1033), - [aux_sym_visibility_modifier_token1] = ACTIONS(1033), - [aux_sym_visibility_modifier_token2] = ACTIONS(1033), - [aux_sym_visibility_modifier_token3] = ACTIONS(1033), - [aux_sym_arrow_function_token1] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_array] = ACTIONS(1033), - [anon_sym_unset] = ACTIONS(1033), - [aux_sym_echo_statement_token1] = ACTIONS(1033), - [anon_sym_declare] = ACTIONS(1033), - [aux_sym_declare_statement_token1] = ACTIONS(1033), - [sym_float] = ACTIONS(1033), - [aux_sym_try_statement_token1] = ACTIONS(1033), - [aux_sym_goto_statement_token1] = ACTIONS(1033), - [aux_sym_continue_statement_token1] = ACTIONS(1033), - [aux_sym_break_statement_token1] = ACTIONS(1033), - [sym_integer] = ACTIONS(1033), - [aux_sym_return_statement_token1] = ACTIONS(1033), - [aux_sym_throw_expression_token1] = ACTIONS(1033), - [aux_sym_while_statement_token1] = ACTIONS(1033), - [aux_sym_while_statement_token2] = ACTIONS(1033), - [aux_sym_do_statement_token1] = ACTIONS(1033), - [aux_sym_for_statement_token1] = ACTIONS(1033), - [aux_sym_for_statement_token2] = ACTIONS(1033), - [aux_sym_foreach_statement_token1] = ACTIONS(1033), - [aux_sym_foreach_statement_token2] = ACTIONS(1033), - [aux_sym_if_statement_token1] = ACTIONS(1033), - [aux_sym_if_statement_token2] = ACTIONS(1033), - [aux_sym_else_if_clause_token1] = ACTIONS(1033), - [aux_sym_else_clause_token1] = ACTIONS(1033), - [aux_sym_match_expression_token1] = ACTIONS(1033), - [aux_sym_match_default_expression_token1] = ACTIONS(1033), - [aux_sym_switch_statement_token1] = ACTIONS(1033), - [aux_sym_switch_block_token1] = ACTIONS(1033), - [aux_sym_case_statement_token1] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_clone] = ACTIONS(1033), - [anon_sym_print] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [sym_shell_command_expression] = ACTIONS(1031), - [anon_sym_list] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1031), - [anon_sym_self] = ACTIONS(1033), - [anon_sym_parent] = ACTIONS(1033), - [anon_sym_POUND_LBRACK] = ACTIONS(1031), - [sym_string] = ACTIONS(1031), - [sym_boolean] = ACTIONS(1033), - [sym_null] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_yield] = ACTIONS(1033), - [aux_sym_include_expression_token1] = ACTIONS(1033), - [aux_sym_include_once_expression_token1] = ACTIONS(1033), - [aux_sym_require_expression_token1] = ACTIONS(1033), - [aux_sym_require_once_expression_token1] = ACTIONS(1033), + [ts_builtin_sym_end] = ACTIONS(1036), + [sym_name] = ACTIONS(1038), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1036), + [aux_sym_function_static_declaration_token1] = ACTIONS(1038), + [aux_sym_global_declaration_token1] = ACTIONS(1038), + [aux_sym_namespace_definition_token1] = ACTIONS(1038), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1038), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1038), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1038), + [anon_sym_BSLASH] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [aux_sym_trait_declaration_token1] = ACTIONS(1038), + [aux_sym_interface_declaration_token1] = ACTIONS(1038), + [aux_sym_class_declaration_token1] = ACTIONS(1038), + [aux_sym_final_modifier_token1] = ACTIONS(1038), + [aux_sym_abstract_modifier_token1] = ACTIONS(1038), + [aux_sym_visibility_modifier_token1] = ACTIONS(1038), + [aux_sym_visibility_modifier_token2] = ACTIONS(1038), + [aux_sym_visibility_modifier_token3] = ACTIONS(1038), + [aux_sym_arrow_function_token1] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_array] = ACTIONS(1038), + [anon_sym_unset] = ACTIONS(1038), + [aux_sym_echo_statement_token1] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [aux_sym_declare_statement_token1] = ACTIONS(1038), + [sym_float] = ACTIONS(1038), + [aux_sym_try_statement_token1] = ACTIONS(1038), + [aux_sym_goto_statement_token1] = ACTIONS(1038), + [aux_sym_continue_statement_token1] = ACTIONS(1038), + [aux_sym_break_statement_token1] = ACTIONS(1038), + [sym_integer] = ACTIONS(1038), + [aux_sym_return_statement_token1] = ACTIONS(1038), + [aux_sym_throw_expression_token1] = ACTIONS(1038), + [aux_sym_while_statement_token1] = ACTIONS(1038), + [aux_sym_while_statement_token2] = ACTIONS(1038), + [aux_sym_do_statement_token1] = ACTIONS(1038), + [aux_sym_for_statement_token1] = ACTIONS(1038), + [aux_sym_for_statement_token2] = ACTIONS(1038), + [aux_sym_foreach_statement_token1] = ACTIONS(1038), + [aux_sym_foreach_statement_token2] = ACTIONS(1038), + [aux_sym_if_statement_token1] = ACTIONS(1038), + [aux_sym_if_statement_token2] = ACTIONS(1038), + [aux_sym_else_if_clause_token1] = ACTIONS(1038), + [aux_sym_else_clause_token1] = ACTIONS(1038), + [aux_sym_match_expression_token1] = ACTIONS(1038), + [aux_sym_match_default_expression_token1] = ACTIONS(1038), + [aux_sym_switch_statement_token1] = ACTIONS(1038), + [aux_sym_switch_block_token1] = ACTIONS(1038), + [aux_sym_case_statement_token1] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_clone] = ACTIONS(1038), + [anon_sym_print] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [sym_shell_command_expression] = ACTIONS(1036), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_self] = ACTIONS(1038), + [anon_sym_parent] = ACTIONS(1038), + [anon_sym_POUND_LBRACK] = ACTIONS(1036), + [sym_string] = ACTIONS(1036), + [sym_boolean] = ACTIONS(1038), + [sym_null] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_yield] = ACTIONS(1038), + [aux_sym_include_expression_token1] = ACTIONS(1038), + [aux_sym_include_once_expression_token1] = ACTIONS(1038), + [aux_sym_require_expression_token1] = ACTIONS(1038), + [aux_sym_require_once_expression_token1] = ACTIONS(1038), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1031), + [sym_heredoc] = ACTIONS(1036), }, [439] = { [sym_text_interpolation] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(1035), - [sym_name] = ACTIONS(1037), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1035), - [aux_sym_function_static_declaration_token1] = ACTIONS(1037), - [aux_sym_global_declaration_token1] = ACTIONS(1037), - [aux_sym_namespace_definition_token1] = ACTIONS(1037), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1037), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1037), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1037), - [anon_sym_BSLASH] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [aux_sym_trait_declaration_token1] = ACTIONS(1037), - [aux_sym_interface_declaration_token1] = ACTIONS(1037), - [aux_sym_class_declaration_token1] = ACTIONS(1037), - [aux_sym_class_modifier_token1] = ACTIONS(1037), - [aux_sym_class_modifier_token2] = ACTIONS(1037), - [aux_sym_visibility_modifier_token1] = ACTIONS(1037), - [aux_sym_visibility_modifier_token2] = ACTIONS(1037), - [aux_sym_visibility_modifier_token3] = ACTIONS(1037), - [aux_sym_arrow_function_token1] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_array] = ACTIONS(1037), - [anon_sym_unset] = ACTIONS(1037), - [aux_sym_echo_statement_token1] = ACTIONS(1037), - [anon_sym_declare] = ACTIONS(1037), - [aux_sym_declare_statement_token1] = ACTIONS(1037), - [sym_float] = ACTIONS(1037), - [aux_sym_try_statement_token1] = ACTIONS(1037), - [aux_sym_goto_statement_token1] = ACTIONS(1037), - [aux_sym_continue_statement_token1] = ACTIONS(1037), - [aux_sym_break_statement_token1] = ACTIONS(1037), - [sym_integer] = ACTIONS(1037), - [aux_sym_return_statement_token1] = ACTIONS(1037), - [aux_sym_throw_expression_token1] = ACTIONS(1037), - [aux_sym_while_statement_token1] = ACTIONS(1037), - [aux_sym_while_statement_token2] = ACTIONS(1037), - [aux_sym_do_statement_token1] = ACTIONS(1037), - [aux_sym_for_statement_token1] = ACTIONS(1037), - [aux_sym_for_statement_token2] = ACTIONS(1037), - [aux_sym_foreach_statement_token1] = ACTIONS(1037), - [aux_sym_foreach_statement_token2] = ACTIONS(1037), - [aux_sym_if_statement_token1] = ACTIONS(1037), - [aux_sym_if_statement_token2] = ACTIONS(1037), - [aux_sym_else_if_clause_token1] = ACTIONS(1037), - [aux_sym_else_clause_token1] = ACTIONS(1037), - [aux_sym_match_expression_token1] = ACTIONS(1037), - [aux_sym_match_default_expression_token1] = ACTIONS(1037), - [aux_sym_switch_statement_token1] = ACTIONS(1037), - [aux_sym_switch_block_token1] = ACTIONS(1037), - [aux_sym_case_statement_token1] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_clone] = ACTIONS(1037), - [anon_sym_print] = ACTIONS(1037), - [anon_sym_new] = ACTIONS(1037), - [anon_sym_PLUS_PLUS] = ACTIONS(1035), - [anon_sym_DASH_DASH] = ACTIONS(1035), - [sym_shell_command_expression] = ACTIONS(1035), - [anon_sym_list] = ACTIONS(1037), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_self] = ACTIONS(1037), - [anon_sym_parent] = ACTIONS(1037), - [anon_sym_POUND_LBRACK] = ACTIONS(1035), - [sym_string] = ACTIONS(1035), - [sym_boolean] = ACTIONS(1037), - [sym_null] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1035), - [anon_sym_yield] = ACTIONS(1037), - [aux_sym_include_expression_token1] = ACTIONS(1037), - [aux_sym_include_once_expression_token1] = ACTIONS(1037), - [aux_sym_require_expression_token1] = ACTIONS(1037), - [aux_sym_require_once_expression_token1] = ACTIONS(1037), + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_name] = ACTIONS(1042), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1040), + [aux_sym_function_static_declaration_token1] = ACTIONS(1042), + [aux_sym_global_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_definition_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [aux_sym_trait_declaration_token1] = ACTIONS(1042), + [aux_sym_interface_declaration_token1] = ACTIONS(1042), + [aux_sym_class_declaration_token1] = ACTIONS(1042), + [aux_sym_final_modifier_token1] = ACTIONS(1042), + [aux_sym_abstract_modifier_token1] = ACTIONS(1042), + [aux_sym_visibility_modifier_token1] = ACTIONS(1042), + [aux_sym_visibility_modifier_token2] = ACTIONS(1042), + [aux_sym_visibility_modifier_token3] = ACTIONS(1042), + [aux_sym_arrow_function_token1] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_array] = ACTIONS(1042), + [anon_sym_unset] = ACTIONS(1042), + [aux_sym_echo_statement_token1] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1042), + [aux_sym_declare_statement_token1] = ACTIONS(1042), + [sym_float] = ACTIONS(1042), + [aux_sym_try_statement_token1] = ACTIONS(1042), + [aux_sym_goto_statement_token1] = ACTIONS(1042), + [aux_sym_continue_statement_token1] = ACTIONS(1042), + [aux_sym_break_statement_token1] = ACTIONS(1042), + [sym_integer] = ACTIONS(1042), + [aux_sym_return_statement_token1] = ACTIONS(1042), + [aux_sym_throw_expression_token1] = ACTIONS(1042), + [aux_sym_while_statement_token1] = ACTIONS(1042), + [aux_sym_while_statement_token2] = ACTIONS(1042), + [aux_sym_do_statement_token1] = ACTIONS(1042), + [aux_sym_for_statement_token1] = ACTIONS(1042), + [aux_sym_for_statement_token2] = ACTIONS(1042), + [aux_sym_foreach_statement_token1] = ACTIONS(1042), + [aux_sym_foreach_statement_token2] = ACTIONS(1042), + [aux_sym_if_statement_token1] = ACTIONS(1042), + [aux_sym_if_statement_token2] = ACTIONS(1042), + [aux_sym_else_if_clause_token1] = ACTIONS(1042), + [aux_sym_else_clause_token1] = ACTIONS(1042), + [aux_sym_match_expression_token1] = ACTIONS(1042), + [aux_sym_match_default_expression_token1] = ACTIONS(1042), + [aux_sym_switch_statement_token1] = ACTIONS(1042), + [aux_sym_switch_block_token1] = ACTIONS(1042), + [aux_sym_case_statement_token1] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_clone] = ACTIONS(1042), + [anon_sym_print] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [sym_shell_command_expression] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_self] = ACTIONS(1042), + [anon_sym_parent] = ACTIONS(1042), + [anon_sym_POUND_LBRACK] = ACTIONS(1040), + [sym_string] = ACTIONS(1040), + [sym_boolean] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_yield] = ACTIONS(1042), + [aux_sym_include_expression_token1] = ACTIONS(1042), + [aux_sym_include_once_expression_token1] = ACTIONS(1042), + [aux_sym_require_expression_token1] = ACTIONS(1042), + [aux_sym_require_once_expression_token1] = ACTIONS(1042), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1035), + [sym_heredoc] = ACTIONS(1040), }, [440] = { [sym_text_interpolation] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_name] = ACTIONS(1041), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1039), - [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_class_declaration_token1] = ACTIONS(1041), - [aux_sym_class_modifier_token1] = ACTIONS(1041), - [aux_sym_class_modifier_token2] = ACTIONS(1041), - [aux_sym_visibility_modifier_token1] = ACTIONS(1041), - [aux_sym_visibility_modifier_token2] = ACTIONS(1041), - [aux_sym_visibility_modifier_token3] = ACTIONS(1041), - [aux_sym_arrow_function_token1] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_array] = ACTIONS(1041), - [anon_sym_unset] = ACTIONS(1041), - [aux_sym_echo_statement_token1] = ACTIONS(1041), - [anon_sym_declare] = ACTIONS(1041), - [aux_sym_declare_statement_token1] = 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), - [aux_sym_case_statement_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), - [anon_sym_clone] = ACTIONS(1041), - [anon_sym_print] = ACTIONS(1041), - [anon_sym_new] = ACTIONS(1041), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [sym_shell_command_expression] = ACTIONS(1039), - [anon_sym_list] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_self] = ACTIONS(1041), - [anon_sym_parent] = ACTIONS(1041), - [anon_sym_POUND_LBRACK] = ACTIONS(1039), - [sym_string] = ACTIONS(1039), - [sym_boolean] = ACTIONS(1041), - [sym_null] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_yield] = ACTIONS(1041), - [aux_sym_include_expression_token1] = ACTIONS(1041), - [aux_sym_include_once_expression_token1] = ACTIONS(1041), - [aux_sym_require_expression_token1] = ACTIONS(1041), - [aux_sym_require_once_expression_token1] = ACTIONS(1041), + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_name] = ACTIONS(1042), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1040), + [aux_sym_function_static_declaration_token1] = ACTIONS(1042), + [aux_sym_global_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_definition_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1042), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1042), + [anon_sym_BSLASH] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [aux_sym_trait_declaration_token1] = ACTIONS(1042), + [aux_sym_interface_declaration_token1] = ACTIONS(1042), + [aux_sym_class_declaration_token1] = ACTIONS(1042), + [aux_sym_final_modifier_token1] = ACTIONS(1042), + [aux_sym_abstract_modifier_token1] = ACTIONS(1042), + [aux_sym_visibility_modifier_token1] = ACTIONS(1042), + [aux_sym_visibility_modifier_token2] = ACTIONS(1042), + [aux_sym_visibility_modifier_token3] = ACTIONS(1042), + [aux_sym_arrow_function_token1] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_array] = ACTIONS(1042), + [anon_sym_unset] = ACTIONS(1042), + [aux_sym_echo_statement_token1] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1042), + [aux_sym_declare_statement_token1] = ACTIONS(1042), + [sym_float] = ACTIONS(1042), + [aux_sym_try_statement_token1] = ACTIONS(1042), + [aux_sym_goto_statement_token1] = ACTIONS(1042), + [aux_sym_continue_statement_token1] = ACTIONS(1042), + [aux_sym_break_statement_token1] = ACTIONS(1042), + [sym_integer] = ACTIONS(1042), + [aux_sym_return_statement_token1] = ACTIONS(1042), + [aux_sym_throw_expression_token1] = ACTIONS(1042), + [aux_sym_while_statement_token1] = ACTIONS(1042), + [aux_sym_while_statement_token2] = ACTIONS(1042), + [aux_sym_do_statement_token1] = ACTIONS(1042), + [aux_sym_for_statement_token1] = ACTIONS(1042), + [aux_sym_for_statement_token2] = ACTIONS(1042), + [aux_sym_foreach_statement_token1] = ACTIONS(1042), + [aux_sym_foreach_statement_token2] = ACTIONS(1042), + [aux_sym_if_statement_token1] = ACTIONS(1042), + [aux_sym_if_statement_token2] = ACTIONS(1042), + [aux_sym_else_if_clause_token1] = ACTIONS(1042), + [aux_sym_else_clause_token1] = ACTIONS(1042), + [aux_sym_match_expression_token1] = ACTIONS(1042), + [aux_sym_match_default_expression_token1] = ACTIONS(1042), + [aux_sym_switch_statement_token1] = ACTIONS(1042), + [aux_sym_switch_block_token1] = ACTIONS(1042), + [aux_sym_case_statement_token1] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_clone] = ACTIONS(1042), + [anon_sym_print] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [sym_shell_command_expression] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_self] = ACTIONS(1042), + [anon_sym_parent] = ACTIONS(1042), + [anon_sym_POUND_LBRACK] = ACTIONS(1040), + [sym_string] = ACTIONS(1040), + [sym_boolean] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_yield] = ACTIONS(1042), + [aux_sym_include_expression_token1] = ACTIONS(1042), + [aux_sym_include_once_expression_token1] = ACTIONS(1042), + [aux_sym_require_expression_token1] = ACTIONS(1042), + [aux_sym_require_once_expression_token1] = ACTIONS(1042), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1039), + [sym_heredoc] = ACTIONS(1040), }, [441] = { [sym_text_interpolation] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_name] = ACTIONS(1045), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1043), - [aux_sym_function_static_declaration_token1] = ACTIONS(1045), - [aux_sym_global_declaration_token1] = ACTIONS(1045), - [aux_sym_namespace_definition_token1] = ACTIONS(1045), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1045), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1045), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1045), - [anon_sym_BSLASH] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [aux_sym_trait_declaration_token1] = ACTIONS(1045), - [aux_sym_interface_declaration_token1] = ACTIONS(1045), - [aux_sym_class_declaration_token1] = ACTIONS(1045), - [aux_sym_class_modifier_token1] = ACTIONS(1045), - [aux_sym_class_modifier_token2] = ACTIONS(1045), - [aux_sym_visibility_modifier_token1] = ACTIONS(1045), - [aux_sym_visibility_modifier_token2] = ACTIONS(1045), - [aux_sym_visibility_modifier_token3] = ACTIONS(1045), - [aux_sym_arrow_function_token1] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_array] = ACTIONS(1045), - [anon_sym_unset] = ACTIONS(1045), - [aux_sym_echo_statement_token1] = ACTIONS(1045), - [anon_sym_declare] = ACTIONS(1045), - [aux_sym_declare_statement_token1] = ACTIONS(1045), - [sym_float] = ACTIONS(1045), - [aux_sym_try_statement_token1] = ACTIONS(1045), - [aux_sym_goto_statement_token1] = ACTIONS(1045), - [aux_sym_continue_statement_token1] = ACTIONS(1045), - [aux_sym_break_statement_token1] = ACTIONS(1045), - [sym_integer] = ACTIONS(1045), - [aux_sym_return_statement_token1] = ACTIONS(1045), - [aux_sym_throw_expression_token1] = ACTIONS(1045), - [aux_sym_while_statement_token1] = ACTIONS(1045), - [aux_sym_while_statement_token2] = ACTIONS(1045), - [aux_sym_do_statement_token1] = ACTIONS(1045), - [aux_sym_for_statement_token1] = ACTIONS(1045), - [aux_sym_for_statement_token2] = ACTIONS(1045), - [aux_sym_foreach_statement_token1] = ACTIONS(1045), - [aux_sym_foreach_statement_token2] = ACTIONS(1045), - [aux_sym_if_statement_token1] = ACTIONS(1045), - [aux_sym_if_statement_token2] = ACTIONS(1045), - [aux_sym_else_if_clause_token1] = ACTIONS(1045), - [aux_sym_else_clause_token1] = ACTIONS(1045), - [aux_sym_match_expression_token1] = ACTIONS(1045), - [aux_sym_match_default_expression_token1] = ACTIONS(1045), - [aux_sym_switch_statement_token1] = ACTIONS(1045), - [aux_sym_switch_block_token1] = ACTIONS(1045), - [aux_sym_case_statement_token1] = ACTIONS(1045), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_clone] = ACTIONS(1045), - [anon_sym_print] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1045), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1043), - [sym_shell_command_expression] = ACTIONS(1043), - [anon_sym_list] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_self] = ACTIONS(1045), - [anon_sym_parent] = ACTIONS(1045), - [anon_sym_POUND_LBRACK] = ACTIONS(1043), - [sym_string] = ACTIONS(1043), - [sym_boolean] = ACTIONS(1045), - [sym_null] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_yield] = ACTIONS(1045), - [aux_sym_include_expression_token1] = ACTIONS(1045), - [aux_sym_include_once_expression_token1] = ACTIONS(1045), - [aux_sym_require_expression_token1] = ACTIONS(1045), - [aux_sym_require_once_expression_token1] = ACTIONS(1045), + [ts_builtin_sym_end] = ACTIONS(1044), + [sym_name] = ACTIONS(1046), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1044), + [aux_sym_function_static_declaration_token1] = ACTIONS(1046), + [aux_sym_global_declaration_token1] = ACTIONS(1046), + [aux_sym_namespace_definition_token1] = ACTIONS(1046), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1046), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1046), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1046), + [anon_sym_BSLASH] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [aux_sym_trait_declaration_token1] = ACTIONS(1046), + [aux_sym_interface_declaration_token1] = ACTIONS(1046), + [aux_sym_class_declaration_token1] = ACTIONS(1046), + [aux_sym_final_modifier_token1] = ACTIONS(1046), + [aux_sym_abstract_modifier_token1] = ACTIONS(1046), + [aux_sym_visibility_modifier_token1] = ACTIONS(1046), + [aux_sym_visibility_modifier_token2] = ACTIONS(1046), + [aux_sym_visibility_modifier_token3] = ACTIONS(1046), + [aux_sym_arrow_function_token1] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_array] = ACTIONS(1046), + [anon_sym_unset] = ACTIONS(1046), + [aux_sym_echo_statement_token1] = ACTIONS(1046), + [anon_sym_declare] = ACTIONS(1046), + [aux_sym_declare_statement_token1] = ACTIONS(1046), + [sym_float] = ACTIONS(1046), + [aux_sym_try_statement_token1] = ACTIONS(1046), + [aux_sym_goto_statement_token1] = ACTIONS(1046), + [aux_sym_continue_statement_token1] = ACTIONS(1046), + [aux_sym_break_statement_token1] = ACTIONS(1046), + [sym_integer] = ACTIONS(1046), + [aux_sym_return_statement_token1] = ACTIONS(1046), + [aux_sym_throw_expression_token1] = ACTIONS(1046), + [aux_sym_while_statement_token1] = ACTIONS(1046), + [aux_sym_while_statement_token2] = ACTIONS(1046), + [aux_sym_do_statement_token1] = ACTIONS(1046), + [aux_sym_for_statement_token1] = ACTIONS(1046), + [aux_sym_for_statement_token2] = ACTIONS(1046), + [aux_sym_foreach_statement_token1] = ACTIONS(1046), + [aux_sym_foreach_statement_token2] = ACTIONS(1046), + [aux_sym_if_statement_token1] = ACTIONS(1046), + [aux_sym_if_statement_token2] = ACTIONS(1046), + [aux_sym_else_if_clause_token1] = ACTIONS(1046), + [aux_sym_else_clause_token1] = ACTIONS(1046), + [aux_sym_match_expression_token1] = ACTIONS(1046), + [aux_sym_match_default_expression_token1] = ACTIONS(1046), + [aux_sym_switch_statement_token1] = ACTIONS(1046), + [aux_sym_switch_block_token1] = ACTIONS(1046), + [aux_sym_case_statement_token1] = ACTIONS(1046), + [anon_sym_AT] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_clone] = ACTIONS(1046), + [anon_sym_print] = ACTIONS(1046), + [anon_sym_new] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [sym_shell_command_expression] = ACTIONS(1044), + [anon_sym_list] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(1046), + [anon_sym_parent] = ACTIONS(1046), + [anon_sym_POUND_LBRACK] = ACTIONS(1044), + [sym_string] = ACTIONS(1044), + [sym_boolean] = ACTIONS(1046), + [sym_null] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_yield] = ACTIONS(1046), + [aux_sym_include_expression_token1] = ACTIONS(1046), + [aux_sym_include_once_expression_token1] = ACTIONS(1046), + [aux_sym_require_expression_token1] = ACTIONS(1046), + [aux_sym_require_once_expression_token1] = ACTIONS(1046), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1043), + [sym_heredoc] = ACTIONS(1044), }, [442] = { [sym_text_interpolation] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_name] = ACTIONS(1049), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1047), - [aux_sym_function_static_declaration_token1] = ACTIONS(1049), - [aux_sym_global_declaration_token1] = ACTIONS(1049), - [aux_sym_namespace_definition_token1] = ACTIONS(1049), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1049), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1049), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1049), - [anon_sym_BSLASH] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [aux_sym_trait_declaration_token1] = ACTIONS(1049), - [aux_sym_interface_declaration_token1] = ACTIONS(1049), - [aux_sym_class_declaration_token1] = ACTIONS(1049), - [aux_sym_class_modifier_token1] = ACTIONS(1049), - [aux_sym_class_modifier_token2] = ACTIONS(1049), - [aux_sym_visibility_modifier_token1] = ACTIONS(1049), - [aux_sym_visibility_modifier_token2] = ACTIONS(1049), - [aux_sym_visibility_modifier_token3] = ACTIONS(1049), - [aux_sym_arrow_function_token1] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_array] = ACTIONS(1049), - [anon_sym_unset] = ACTIONS(1049), - [aux_sym_echo_statement_token1] = ACTIONS(1049), - [anon_sym_declare] = ACTIONS(1049), - [aux_sym_declare_statement_token1] = ACTIONS(1049), - [sym_float] = ACTIONS(1049), - [aux_sym_try_statement_token1] = ACTIONS(1049), - [aux_sym_goto_statement_token1] = ACTIONS(1049), - [aux_sym_continue_statement_token1] = ACTIONS(1049), - [aux_sym_break_statement_token1] = ACTIONS(1049), - [sym_integer] = ACTIONS(1049), - [aux_sym_return_statement_token1] = ACTIONS(1049), - [aux_sym_throw_expression_token1] = ACTIONS(1049), - [aux_sym_while_statement_token1] = ACTIONS(1049), - [aux_sym_while_statement_token2] = ACTIONS(1049), - [aux_sym_do_statement_token1] = ACTIONS(1049), - [aux_sym_for_statement_token1] = ACTIONS(1049), - [aux_sym_for_statement_token2] = ACTIONS(1049), - [aux_sym_foreach_statement_token1] = ACTIONS(1049), - [aux_sym_foreach_statement_token2] = ACTIONS(1049), - [aux_sym_if_statement_token1] = ACTIONS(1049), - [aux_sym_if_statement_token2] = ACTIONS(1049), - [aux_sym_else_if_clause_token1] = ACTIONS(1049), - [aux_sym_else_clause_token1] = ACTIONS(1049), - [aux_sym_match_expression_token1] = ACTIONS(1049), - [aux_sym_match_default_expression_token1] = ACTIONS(1049), - [aux_sym_switch_statement_token1] = ACTIONS(1049), - [aux_sym_switch_block_token1] = ACTIONS(1049), - [aux_sym_case_statement_token1] = ACTIONS(1049), - [anon_sym_AT] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_clone] = ACTIONS(1049), - [anon_sym_print] = ACTIONS(1049), - [anon_sym_new] = ACTIONS(1049), - [anon_sym_PLUS_PLUS] = ACTIONS(1047), - [anon_sym_DASH_DASH] = ACTIONS(1047), - [sym_shell_command_expression] = ACTIONS(1047), - [anon_sym_list] = ACTIONS(1049), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_self] = ACTIONS(1049), - [anon_sym_parent] = ACTIONS(1049), - [anon_sym_POUND_LBRACK] = ACTIONS(1047), - [sym_string] = ACTIONS(1047), - [sym_boolean] = ACTIONS(1049), - [sym_null] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_yield] = ACTIONS(1049), - [aux_sym_include_expression_token1] = ACTIONS(1049), - [aux_sym_include_once_expression_token1] = ACTIONS(1049), - [aux_sym_require_expression_token1] = ACTIONS(1049), - [aux_sym_require_once_expression_token1] = ACTIONS(1049), + [ts_builtin_sym_end] = ACTIONS(1048), + [sym_name] = ACTIONS(1050), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1048), + [aux_sym_function_static_declaration_token1] = ACTIONS(1050), + [aux_sym_global_declaration_token1] = ACTIONS(1050), + [aux_sym_namespace_definition_token1] = ACTIONS(1050), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1050), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1050), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1050), + [anon_sym_BSLASH] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [aux_sym_trait_declaration_token1] = ACTIONS(1050), + [aux_sym_interface_declaration_token1] = ACTIONS(1050), + [aux_sym_class_declaration_token1] = ACTIONS(1050), + [aux_sym_final_modifier_token1] = ACTIONS(1050), + [aux_sym_abstract_modifier_token1] = ACTIONS(1050), + [aux_sym_visibility_modifier_token1] = ACTIONS(1050), + [aux_sym_visibility_modifier_token2] = ACTIONS(1050), + [aux_sym_visibility_modifier_token3] = ACTIONS(1050), + [aux_sym_arrow_function_token1] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_array] = ACTIONS(1050), + [anon_sym_unset] = ACTIONS(1050), + [aux_sym_echo_statement_token1] = ACTIONS(1050), + [anon_sym_declare] = ACTIONS(1050), + [aux_sym_declare_statement_token1] = ACTIONS(1050), + [sym_float] = ACTIONS(1050), + [aux_sym_try_statement_token1] = ACTIONS(1050), + [aux_sym_goto_statement_token1] = ACTIONS(1050), + [aux_sym_continue_statement_token1] = ACTIONS(1050), + [aux_sym_break_statement_token1] = ACTIONS(1050), + [sym_integer] = ACTIONS(1050), + [aux_sym_return_statement_token1] = ACTIONS(1050), + [aux_sym_throw_expression_token1] = ACTIONS(1050), + [aux_sym_while_statement_token1] = ACTIONS(1050), + [aux_sym_while_statement_token2] = ACTIONS(1050), + [aux_sym_do_statement_token1] = ACTIONS(1050), + [aux_sym_for_statement_token1] = ACTIONS(1050), + [aux_sym_for_statement_token2] = ACTIONS(1050), + [aux_sym_foreach_statement_token1] = ACTIONS(1050), + [aux_sym_foreach_statement_token2] = ACTIONS(1050), + [aux_sym_if_statement_token1] = ACTIONS(1050), + [aux_sym_if_statement_token2] = ACTIONS(1050), + [aux_sym_else_if_clause_token1] = ACTIONS(1050), + [aux_sym_else_clause_token1] = ACTIONS(1050), + [aux_sym_match_expression_token1] = ACTIONS(1050), + [aux_sym_match_default_expression_token1] = ACTIONS(1050), + [aux_sym_switch_statement_token1] = ACTIONS(1050), + [aux_sym_switch_block_token1] = ACTIONS(1050), + [aux_sym_case_statement_token1] = ACTIONS(1050), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_clone] = ACTIONS(1050), + [anon_sym_print] = ACTIONS(1050), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [sym_shell_command_expression] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_self] = ACTIONS(1050), + [anon_sym_parent] = ACTIONS(1050), + [anon_sym_POUND_LBRACK] = ACTIONS(1048), + [sym_string] = ACTIONS(1048), + [sym_boolean] = ACTIONS(1050), + [sym_null] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1050), + [aux_sym_include_expression_token1] = ACTIONS(1050), + [aux_sym_include_once_expression_token1] = ACTIONS(1050), + [aux_sym_require_expression_token1] = ACTIONS(1050), + [aux_sym_require_once_expression_token1] = ACTIONS(1050), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1047), + [sym_heredoc] = ACTIONS(1048), }, [443] = { [sym_text_interpolation] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_name] = ACTIONS(1053), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1051), - [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_class_declaration_token1] = ACTIONS(1053), - [aux_sym_class_modifier_token1] = ACTIONS(1053), - [aux_sym_class_modifier_token2] = 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), - [anon_sym_array] = ACTIONS(1053), - [anon_sym_unset] = ACTIONS(1053), - [aux_sym_echo_statement_token1] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [aux_sym_declare_statement_token1] = 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), - [aux_sym_case_statement_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), - [anon_sym_clone] = ACTIONS(1053), - [anon_sym_print] = ACTIONS(1053), - [anon_sym_new] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [sym_shell_command_expression] = ACTIONS(1051), - [anon_sym_list] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_self] = ACTIONS(1053), - [anon_sym_parent] = ACTIONS(1053), - [anon_sym_POUND_LBRACK] = ACTIONS(1051), - [sym_string] = ACTIONS(1051), - [sym_boolean] = ACTIONS(1053), - [sym_null] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_yield] = 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), + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_name] = ACTIONS(1054), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1052), + [aux_sym_function_static_declaration_token1] = ACTIONS(1054), + [aux_sym_global_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_definition_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1054), + [anon_sym_BSLASH] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [aux_sym_trait_declaration_token1] = ACTIONS(1054), + [aux_sym_interface_declaration_token1] = ACTIONS(1054), + [aux_sym_class_declaration_token1] = ACTIONS(1054), + [aux_sym_final_modifier_token1] = ACTIONS(1054), + [aux_sym_abstract_modifier_token1] = ACTIONS(1054), + [aux_sym_visibility_modifier_token1] = ACTIONS(1054), + [aux_sym_visibility_modifier_token2] = ACTIONS(1054), + [aux_sym_visibility_modifier_token3] = ACTIONS(1054), + [aux_sym_arrow_function_token1] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_array] = ACTIONS(1054), + [anon_sym_unset] = ACTIONS(1054), + [aux_sym_echo_statement_token1] = ACTIONS(1054), + [anon_sym_declare] = ACTIONS(1054), + [aux_sym_declare_statement_token1] = ACTIONS(1054), + [sym_float] = ACTIONS(1054), + [aux_sym_try_statement_token1] = ACTIONS(1054), + [aux_sym_goto_statement_token1] = ACTIONS(1054), + [aux_sym_continue_statement_token1] = ACTIONS(1054), + [aux_sym_break_statement_token1] = ACTIONS(1054), + [sym_integer] = ACTIONS(1054), + [aux_sym_return_statement_token1] = ACTIONS(1054), + [aux_sym_throw_expression_token1] = ACTIONS(1054), + [aux_sym_while_statement_token1] = ACTIONS(1054), + [aux_sym_while_statement_token2] = ACTIONS(1054), + [aux_sym_do_statement_token1] = ACTIONS(1054), + [aux_sym_for_statement_token1] = ACTIONS(1054), + [aux_sym_for_statement_token2] = ACTIONS(1054), + [aux_sym_foreach_statement_token1] = ACTIONS(1054), + [aux_sym_foreach_statement_token2] = ACTIONS(1054), + [aux_sym_if_statement_token1] = ACTIONS(1054), + [aux_sym_if_statement_token2] = ACTIONS(1054), + [aux_sym_else_if_clause_token1] = ACTIONS(1054), + [aux_sym_else_clause_token1] = ACTIONS(1054), + [aux_sym_match_expression_token1] = ACTIONS(1054), + [aux_sym_match_default_expression_token1] = ACTIONS(1054), + [aux_sym_switch_statement_token1] = ACTIONS(1054), + [aux_sym_switch_block_token1] = ACTIONS(1054), + [aux_sym_case_statement_token1] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_clone] = ACTIONS(1054), + [anon_sym_print] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [sym_shell_command_expression] = ACTIONS(1052), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_self] = ACTIONS(1054), + [anon_sym_parent] = ACTIONS(1054), + [anon_sym_POUND_LBRACK] = ACTIONS(1052), + [sym_string] = ACTIONS(1052), + [sym_boolean] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1054), + [aux_sym_include_expression_token1] = ACTIONS(1054), + [aux_sym_include_once_expression_token1] = ACTIONS(1054), + [aux_sym_require_expression_token1] = ACTIONS(1054), + [aux_sym_require_once_expression_token1] = ACTIONS(1054), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1051), + [sym_heredoc] = ACTIONS(1052), }, [444] = { [sym_text_interpolation] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_name] = ACTIONS(1053), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1051), - [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_class_declaration_token1] = ACTIONS(1053), - [aux_sym_class_modifier_token1] = ACTIONS(1053), - [aux_sym_class_modifier_token2] = 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), - [anon_sym_array] = ACTIONS(1053), - [anon_sym_unset] = ACTIONS(1053), - [aux_sym_echo_statement_token1] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [aux_sym_declare_statement_token1] = 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), - [aux_sym_case_statement_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), - [anon_sym_clone] = ACTIONS(1053), - [anon_sym_print] = ACTIONS(1053), - [anon_sym_new] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [sym_shell_command_expression] = ACTIONS(1051), - [anon_sym_list] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_self] = ACTIONS(1053), - [anon_sym_parent] = ACTIONS(1053), - [anon_sym_POUND_LBRACK] = ACTIONS(1051), - [sym_string] = ACTIONS(1051), - [sym_boolean] = ACTIONS(1053), - [sym_null] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_yield] = 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), + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_name] = ACTIONS(1058), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1056), + [aux_sym_function_static_declaration_token1] = ACTIONS(1058), + [aux_sym_global_declaration_token1] = ACTIONS(1058), + [aux_sym_namespace_definition_token1] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [aux_sym_trait_declaration_token1] = ACTIONS(1058), + [aux_sym_interface_declaration_token1] = ACTIONS(1058), + [aux_sym_class_declaration_token1] = ACTIONS(1058), + [aux_sym_final_modifier_token1] = ACTIONS(1058), + [aux_sym_abstract_modifier_token1] = ACTIONS(1058), + [aux_sym_visibility_modifier_token1] = ACTIONS(1058), + [aux_sym_visibility_modifier_token2] = ACTIONS(1058), + [aux_sym_visibility_modifier_token3] = ACTIONS(1058), + [aux_sym_arrow_function_token1] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_array] = ACTIONS(1058), + [anon_sym_unset] = ACTIONS(1058), + [aux_sym_echo_statement_token1] = ACTIONS(1058), + [anon_sym_declare] = ACTIONS(1058), + [aux_sym_declare_statement_token1] = ACTIONS(1058), + [sym_float] = ACTIONS(1058), + [aux_sym_try_statement_token1] = ACTIONS(1058), + [aux_sym_goto_statement_token1] = ACTIONS(1058), + [aux_sym_continue_statement_token1] = ACTIONS(1058), + [aux_sym_break_statement_token1] = ACTIONS(1058), + [sym_integer] = ACTIONS(1058), + [aux_sym_return_statement_token1] = ACTIONS(1058), + [aux_sym_throw_expression_token1] = ACTIONS(1058), + [aux_sym_while_statement_token1] = ACTIONS(1058), + [aux_sym_while_statement_token2] = ACTIONS(1058), + [aux_sym_do_statement_token1] = ACTIONS(1058), + [aux_sym_for_statement_token1] = ACTIONS(1058), + [aux_sym_for_statement_token2] = ACTIONS(1058), + [aux_sym_foreach_statement_token1] = ACTIONS(1058), + [aux_sym_foreach_statement_token2] = ACTIONS(1058), + [aux_sym_if_statement_token1] = ACTIONS(1058), + [aux_sym_if_statement_token2] = ACTIONS(1058), + [aux_sym_else_if_clause_token1] = ACTIONS(1058), + [aux_sym_else_clause_token1] = ACTIONS(1058), + [aux_sym_match_expression_token1] = ACTIONS(1058), + [aux_sym_match_default_expression_token1] = ACTIONS(1058), + [aux_sym_switch_statement_token1] = ACTIONS(1058), + [aux_sym_switch_block_token1] = ACTIONS(1058), + [aux_sym_case_statement_token1] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_clone] = ACTIONS(1058), + [anon_sym_print] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [sym_shell_command_expression] = ACTIONS(1056), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(1058), + [anon_sym_parent] = ACTIONS(1058), + [anon_sym_POUND_LBRACK] = ACTIONS(1056), + [sym_string] = ACTIONS(1056), + [sym_boolean] = ACTIONS(1058), + [sym_null] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_yield] = ACTIONS(1058), + [aux_sym_include_expression_token1] = ACTIONS(1058), + [aux_sym_include_once_expression_token1] = ACTIONS(1058), + [aux_sym_require_expression_token1] = ACTIONS(1058), + [aux_sym_require_once_expression_token1] = ACTIONS(1058), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1051), + [sym_heredoc] = ACTIONS(1056), }, [445] = { [sym_text_interpolation] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_name] = ACTIONS(1057), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1055), - [aux_sym_function_static_declaration_token1] = ACTIONS(1057), - [aux_sym_global_declaration_token1] = ACTIONS(1057), - [aux_sym_namespace_definition_token1] = ACTIONS(1057), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1057), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1057), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1057), - [anon_sym_BSLASH] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [aux_sym_trait_declaration_token1] = ACTIONS(1057), - [aux_sym_interface_declaration_token1] = ACTIONS(1057), - [aux_sym_class_declaration_token1] = ACTIONS(1057), - [aux_sym_class_modifier_token1] = ACTIONS(1057), - [aux_sym_class_modifier_token2] = ACTIONS(1057), - [aux_sym_visibility_modifier_token1] = ACTIONS(1057), - [aux_sym_visibility_modifier_token2] = ACTIONS(1057), - [aux_sym_visibility_modifier_token3] = ACTIONS(1057), - [aux_sym_arrow_function_token1] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_array] = ACTIONS(1057), - [anon_sym_unset] = ACTIONS(1057), - [aux_sym_echo_statement_token1] = ACTIONS(1057), - [anon_sym_declare] = ACTIONS(1057), - [aux_sym_declare_statement_token1] = ACTIONS(1057), - [sym_float] = ACTIONS(1057), - [aux_sym_try_statement_token1] = ACTIONS(1057), - [aux_sym_goto_statement_token1] = ACTIONS(1057), - [aux_sym_continue_statement_token1] = ACTIONS(1057), - [aux_sym_break_statement_token1] = ACTIONS(1057), - [sym_integer] = ACTIONS(1057), - [aux_sym_return_statement_token1] = ACTIONS(1057), - [aux_sym_throw_expression_token1] = ACTIONS(1057), - [aux_sym_while_statement_token1] = ACTIONS(1057), - [aux_sym_while_statement_token2] = ACTIONS(1057), - [aux_sym_do_statement_token1] = ACTIONS(1057), - [aux_sym_for_statement_token1] = ACTIONS(1057), - [aux_sym_for_statement_token2] = ACTIONS(1057), - [aux_sym_foreach_statement_token1] = ACTIONS(1057), - [aux_sym_foreach_statement_token2] = ACTIONS(1057), - [aux_sym_if_statement_token1] = ACTIONS(1057), - [aux_sym_if_statement_token2] = ACTIONS(1057), - [aux_sym_else_if_clause_token1] = ACTIONS(1057), - [aux_sym_else_clause_token1] = ACTIONS(1057), - [aux_sym_match_expression_token1] = ACTIONS(1057), - [aux_sym_match_default_expression_token1] = ACTIONS(1057), - [aux_sym_switch_statement_token1] = ACTIONS(1057), - [aux_sym_switch_block_token1] = ACTIONS(1057), - [aux_sym_case_statement_token1] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_clone] = ACTIONS(1057), - [anon_sym_print] = ACTIONS(1057), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [sym_shell_command_expression] = ACTIONS(1055), - [anon_sym_list] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_self] = ACTIONS(1057), - [anon_sym_parent] = ACTIONS(1057), - [anon_sym_POUND_LBRACK] = ACTIONS(1055), - [sym_string] = ACTIONS(1055), - [sym_boolean] = ACTIONS(1057), - [sym_null] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_yield] = ACTIONS(1057), - [aux_sym_include_expression_token1] = ACTIONS(1057), - [aux_sym_include_once_expression_token1] = ACTIONS(1057), - [aux_sym_require_expression_token1] = ACTIONS(1057), - [aux_sym_require_once_expression_token1] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1060), + [sym_name] = ACTIONS(1062), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1060), + [aux_sym_function_static_declaration_token1] = ACTIONS(1062), + [aux_sym_global_declaration_token1] = ACTIONS(1062), + [aux_sym_namespace_definition_token1] = ACTIONS(1062), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1062), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1062), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1062), + [anon_sym_BSLASH] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [aux_sym_trait_declaration_token1] = ACTIONS(1062), + [aux_sym_interface_declaration_token1] = ACTIONS(1062), + [aux_sym_class_declaration_token1] = ACTIONS(1062), + [aux_sym_final_modifier_token1] = ACTIONS(1062), + [aux_sym_abstract_modifier_token1] = ACTIONS(1062), + [aux_sym_visibility_modifier_token1] = ACTIONS(1062), + [aux_sym_visibility_modifier_token2] = ACTIONS(1062), + [aux_sym_visibility_modifier_token3] = ACTIONS(1062), + [aux_sym_arrow_function_token1] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_array] = ACTIONS(1062), + [anon_sym_unset] = ACTIONS(1062), + [aux_sym_echo_statement_token1] = ACTIONS(1062), + [anon_sym_declare] = ACTIONS(1062), + [aux_sym_declare_statement_token1] = ACTIONS(1062), + [sym_float] = ACTIONS(1062), + [aux_sym_try_statement_token1] = ACTIONS(1062), + [aux_sym_goto_statement_token1] = ACTIONS(1062), + [aux_sym_continue_statement_token1] = ACTIONS(1062), + [aux_sym_break_statement_token1] = ACTIONS(1062), + [sym_integer] = ACTIONS(1062), + [aux_sym_return_statement_token1] = ACTIONS(1062), + [aux_sym_throw_expression_token1] = ACTIONS(1062), + [aux_sym_while_statement_token1] = ACTIONS(1062), + [aux_sym_while_statement_token2] = ACTIONS(1062), + [aux_sym_do_statement_token1] = ACTIONS(1062), + [aux_sym_for_statement_token1] = ACTIONS(1062), + [aux_sym_for_statement_token2] = ACTIONS(1062), + [aux_sym_foreach_statement_token1] = ACTIONS(1062), + [aux_sym_foreach_statement_token2] = ACTIONS(1062), + [aux_sym_if_statement_token1] = ACTIONS(1062), + [aux_sym_if_statement_token2] = ACTIONS(1062), + [aux_sym_else_if_clause_token1] = ACTIONS(1062), + [aux_sym_else_clause_token1] = ACTIONS(1062), + [aux_sym_match_expression_token1] = ACTIONS(1062), + [aux_sym_match_default_expression_token1] = ACTIONS(1062), + [aux_sym_switch_statement_token1] = ACTIONS(1062), + [aux_sym_switch_block_token1] = ACTIONS(1062), + [aux_sym_case_statement_token1] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1060), + [anon_sym_clone] = ACTIONS(1062), + [anon_sym_print] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [sym_shell_command_expression] = ACTIONS(1060), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_self] = ACTIONS(1062), + [anon_sym_parent] = ACTIONS(1062), + [anon_sym_POUND_LBRACK] = ACTIONS(1060), + [sym_string] = ACTIONS(1060), + [sym_boolean] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_yield] = ACTIONS(1062), + [aux_sym_include_expression_token1] = ACTIONS(1062), + [aux_sym_include_once_expression_token1] = ACTIONS(1062), + [aux_sym_require_expression_token1] = ACTIONS(1062), + [aux_sym_require_once_expression_token1] = ACTIONS(1062), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1055), + [sym_heredoc] = ACTIONS(1060), }, [446] = { [sym_text_interpolation] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(1059), - [sym_name] = ACTIONS(1061), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1059), - [aux_sym_function_static_declaration_token1] = ACTIONS(1061), - [aux_sym_global_declaration_token1] = ACTIONS(1061), - [aux_sym_namespace_definition_token1] = ACTIONS(1061), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1061), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1061), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [aux_sym_trait_declaration_token1] = ACTIONS(1061), - [aux_sym_interface_declaration_token1] = ACTIONS(1061), - [aux_sym_class_declaration_token1] = ACTIONS(1061), - [aux_sym_class_modifier_token1] = ACTIONS(1061), - [aux_sym_class_modifier_token2] = ACTIONS(1061), - [aux_sym_visibility_modifier_token1] = ACTIONS(1061), - [aux_sym_visibility_modifier_token2] = ACTIONS(1061), - [aux_sym_visibility_modifier_token3] = ACTIONS(1061), - [aux_sym_arrow_function_token1] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_array] = ACTIONS(1061), - [anon_sym_unset] = ACTIONS(1061), - [aux_sym_echo_statement_token1] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [aux_sym_declare_statement_token1] = ACTIONS(1061), - [sym_float] = ACTIONS(1061), - [aux_sym_try_statement_token1] = ACTIONS(1061), - [aux_sym_goto_statement_token1] = ACTIONS(1061), - [aux_sym_continue_statement_token1] = ACTIONS(1061), - [aux_sym_break_statement_token1] = ACTIONS(1061), - [sym_integer] = ACTIONS(1061), - [aux_sym_return_statement_token1] = ACTIONS(1061), - [aux_sym_throw_expression_token1] = ACTIONS(1061), - [aux_sym_while_statement_token1] = ACTIONS(1061), - [aux_sym_while_statement_token2] = ACTIONS(1061), - [aux_sym_do_statement_token1] = ACTIONS(1061), - [aux_sym_for_statement_token1] = ACTIONS(1061), - [aux_sym_for_statement_token2] = ACTIONS(1061), - [aux_sym_foreach_statement_token1] = ACTIONS(1061), - [aux_sym_foreach_statement_token2] = ACTIONS(1061), - [aux_sym_if_statement_token1] = ACTIONS(1061), - [aux_sym_if_statement_token2] = ACTIONS(1061), - [aux_sym_else_if_clause_token1] = ACTIONS(1061), - [aux_sym_else_clause_token1] = ACTIONS(1061), - [aux_sym_match_expression_token1] = ACTIONS(1061), - [aux_sym_match_default_expression_token1] = ACTIONS(1061), - [aux_sym_switch_statement_token1] = ACTIONS(1061), - [aux_sym_switch_block_token1] = ACTIONS(1061), - [aux_sym_case_statement_token1] = ACTIONS(1061), - [anon_sym_AT] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1059), - [anon_sym_clone] = ACTIONS(1061), - [anon_sym_print] = ACTIONS(1061), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [sym_shell_command_expression] = ACTIONS(1059), - [anon_sym_list] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_self] = ACTIONS(1061), - [anon_sym_parent] = ACTIONS(1061), - [anon_sym_POUND_LBRACK] = ACTIONS(1059), - [sym_string] = ACTIONS(1059), - [sym_boolean] = ACTIONS(1061), - [sym_null] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_yield] = ACTIONS(1061), - [aux_sym_include_expression_token1] = ACTIONS(1061), - [aux_sym_include_once_expression_token1] = ACTIONS(1061), - [aux_sym_require_expression_token1] = ACTIONS(1061), - [aux_sym_require_once_expression_token1] = ACTIONS(1061), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_name] = ACTIONS(1066), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1064), + [aux_sym_function_static_declaration_token1] = ACTIONS(1066), + [aux_sym_global_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_definition_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1066), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [aux_sym_trait_declaration_token1] = ACTIONS(1066), + [aux_sym_interface_declaration_token1] = ACTIONS(1066), + [aux_sym_class_declaration_token1] = ACTIONS(1066), + [aux_sym_final_modifier_token1] = ACTIONS(1066), + [aux_sym_abstract_modifier_token1] = ACTIONS(1066), + [aux_sym_visibility_modifier_token1] = ACTIONS(1066), + [aux_sym_visibility_modifier_token2] = ACTIONS(1066), + [aux_sym_visibility_modifier_token3] = ACTIONS(1066), + [aux_sym_arrow_function_token1] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_array] = ACTIONS(1066), + [anon_sym_unset] = ACTIONS(1066), + [aux_sym_echo_statement_token1] = ACTIONS(1066), + [anon_sym_declare] = ACTIONS(1066), + [aux_sym_declare_statement_token1] = ACTIONS(1066), + [sym_float] = ACTIONS(1066), + [aux_sym_try_statement_token1] = ACTIONS(1066), + [aux_sym_goto_statement_token1] = ACTIONS(1066), + [aux_sym_continue_statement_token1] = ACTIONS(1066), + [aux_sym_break_statement_token1] = ACTIONS(1066), + [sym_integer] = ACTIONS(1066), + [aux_sym_return_statement_token1] = ACTIONS(1066), + [aux_sym_throw_expression_token1] = ACTIONS(1066), + [aux_sym_while_statement_token1] = ACTIONS(1066), + [aux_sym_while_statement_token2] = ACTIONS(1066), + [aux_sym_do_statement_token1] = ACTIONS(1066), + [aux_sym_for_statement_token1] = ACTIONS(1066), + [aux_sym_for_statement_token2] = ACTIONS(1066), + [aux_sym_foreach_statement_token1] = ACTIONS(1066), + [aux_sym_foreach_statement_token2] = ACTIONS(1066), + [aux_sym_if_statement_token1] = ACTIONS(1066), + [aux_sym_if_statement_token2] = ACTIONS(1066), + [aux_sym_else_if_clause_token1] = ACTIONS(1066), + [aux_sym_else_clause_token1] = ACTIONS(1066), + [aux_sym_match_expression_token1] = ACTIONS(1066), + [aux_sym_match_default_expression_token1] = ACTIONS(1066), + [aux_sym_switch_statement_token1] = ACTIONS(1066), + [aux_sym_switch_block_token1] = ACTIONS(1066), + [aux_sym_case_statement_token1] = ACTIONS(1066), + [anon_sym_AT] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_clone] = ACTIONS(1066), + [anon_sym_print] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [sym_shell_command_expression] = ACTIONS(1064), + [anon_sym_list] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_self] = ACTIONS(1066), + [anon_sym_parent] = ACTIONS(1066), + [anon_sym_POUND_LBRACK] = ACTIONS(1064), + [sym_string] = ACTIONS(1064), + [sym_boolean] = ACTIONS(1066), + [sym_null] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_yield] = ACTIONS(1066), + [aux_sym_include_expression_token1] = ACTIONS(1066), + [aux_sym_include_once_expression_token1] = ACTIONS(1066), + [aux_sym_require_expression_token1] = ACTIONS(1066), + [aux_sym_require_once_expression_token1] = ACTIONS(1066), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1059), + [sym_heredoc] = ACTIONS(1064), }, [447] = { [sym_text_interpolation] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_name] = ACTIONS(1065), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1063), - [aux_sym_function_static_declaration_token1] = ACTIONS(1065), - [aux_sym_global_declaration_token1] = ACTIONS(1065), - [aux_sym_namespace_definition_token1] = ACTIONS(1065), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1065), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1065), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1065), - [anon_sym_BSLASH] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [aux_sym_trait_declaration_token1] = ACTIONS(1065), - [aux_sym_interface_declaration_token1] = ACTIONS(1065), - [aux_sym_class_declaration_token1] = ACTIONS(1065), - [aux_sym_class_modifier_token1] = ACTIONS(1065), - [aux_sym_class_modifier_token2] = ACTIONS(1065), - [aux_sym_visibility_modifier_token1] = ACTIONS(1065), - [aux_sym_visibility_modifier_token2] = ACTIONS(1065), - [aux_sym_visibility_modifier_token3] = ACTIONS(1065), - [aux_sym_arrow_function_token1] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_array] = ACTIONS(1065), - [anon_sym_unset] = ACTIONS(1065), - [aux_sym_echo_statement_token1] = ACTIONS(1065), - [anon_sym_declare] = ACTIONS(1065), - [aux_sym_declare_statement_token1] = ACTIONS(1065), - [sym_float] = ACTIONS(1065), - [aux_sym_try_statement_token1] = ACTIONS(1065), - [aux_sym_goto_statement_token1] = ACTIONS(1065), - [aux_sym_continue_statement_token1] = ACTIONS(1065), - [aux_sym_break_statement_token1] = ACTIONS(1065), - [sym_integer] = ACTIONS(1065), - [aux_sym_return_statement_token1] = ACTIONS(1065), - [aux_sym_throw_expression_token1] = ACTIONS(1065), - [aux_sym_while_statement_token1] = ACTIONS(1065), - [aux_sym_while_statement_token2] = ACTIONS(1065), - [aux_sym_do_statement_token1] = ACTIONS(1065), - [aux_sym_for_statement_token1] = ACTIONS(1065), - [aux_sym_for_statement_token2] = ACTIONS(1065), - [aux_sym_foreach_statement_token1] = ACTIONS(1065), - [aux_sym_foreach_statement_token2] = ACTIONS(1065), - [aux_sym_if_statement_token1] = ACTIONS(1065), - [aux_sym_if_statement_token2] = ACTIONS(1065), - [aux_sym_else_if_clause_token1] = ACTIONS(1065), - [aux_sym_else_clause_token1] = ACTIONS(1065), - [aux_sym_match_expression_token1] = ACTIONS(1065), - [aux_sym_match_default_expression_token1] = ACTIONS(1065), - [aux_sym_switch_statement_token1] = ACTIONS(1065), - [aux_sym_switch_block_token1] = ACTIONS(1065), - [aux_sym_case_statement_token1] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_clone] = ACTIONS(1065), - [anon_sym_print] = ACTIONS(1065), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [sym_shell_command_expression] = ACTIONS(1063), - [anon_sym_list] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_self] = ACTIONS(1065), - [anon_sym_parent] = ACTIONS(1065), - [anon_sym_POUND_LBRACK] = ACTIONS(1063), - [sym_string] = ACTIONS(1063), - [sym_boolean] = ACTIONS(1065), - [sym_null] = ACTIONS(1065), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1065), - [aux_sym_include_expression_token1] = ACTIONS(1065), - [aux_sym_include_once_expression_token1] = ACTIONS(1065), - [aux_sym_require_expression_token1] = ACTIONS(1065), - [aux_sym_require_once_expression_token1] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_name] = ACTIONS(1070), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1068), + [aux_sym_function_static_declaration_token1] = ACTIONS(1070), + [aux_sym_global_declaration_token1] = ACTIONS(1070), + [aux_sym_namespace_definition_token1] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1070), + [anon_sym_BSLASH] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [aux_sym_trait_declaration_token1] = ACTIONS(1070), + [aux_sym_interface_declaration_token1] = ACTIONS(1070), + [aux_sym_class_declaration_token1] = ACTIONS(1070), + [aux_sym_final_modifier_token1] = ACTIONS(1070), + [aux_sym_abstract_modifier_token1] = ACTIONS(1070), + [aux_sym_visibility_modifier_token1] = ACTIONS(1070), + [aux_sym_visibility_modifier_token2] = ACTIONS(1070), + [aux_sym_visibility_modifier_token3] = ACTIONS(1070), + [aux_sym_arrow_function_token1] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_array] = ACTIONS(1070), + [anon_sym_unset] = ACTIONS(1070), + [aux_sym_echo_statement_token1] = ACTIONS(1070), + [anon_sym_declare] = ACTIONS(1070), + [aux_sym_declare_statement_token1] = ACTIONS(1070), + [sym_float] = ACTIONS(1070), + [aux_sym_try_statement_token1] = ACTIONS(1070), + [aux_sym_goto_statement_token1] = ACTIONS(1070), + [aux_sym_continue_statement_token1] = ACTIONS(1070), + [aux_sym_break_statement_token1] = ACTIONS(1070), + [sym_integer] = ACTIONS(1070), + [aux_sym_return_statement_token1] = ACTIONS(1070), + [aux_sym_throw_expression_token1] = ACTIONS(1070), + [aux_sym_while_statement_token1] = ACTIONS(1070), + [aux_sym_while_statement_token2] = ACTIONS(1070), + [aux_sym_do_statement_token1] = ACTIONS(1070), + [aux_sym_for_statement_token1] = ACTIONS(1070), + [aux_sym_for_statement_token2] = ACTIONS(1070), + [aux_sym_foreach_statement_token1] = ACTIONS(1070), + [aux_sym_foreach_statement_token2] = ACTIONS(1070), + [aux_sym_if_statement_token1] = ACTIONS(1070), + [aux_sym_if_statement_token2] = ACTIONS(1070), + [aux_sym_else_if_clause_token1] = ACTIONS(1070), + [aux_sym_else_clause_token1] = ACTIONS(1070), + [aux_sym_match_expression_token1] = ACTIONS(1070), + [aux_sym_match_default_expression_token1] = ACTIONS(1070), + [aux_sym_switch_statement_token1] = ACTIONS(1070), + [aux_sym_switch_block_token1] = ACTIONS(1070), + [aux_sym_case_statement_token1] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_clone] = ACTIONS(1070), + [anon_sym_print] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [sym_shell_command_expression] = ACTIONS(1068), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_self] = ACTIONS(1070), + [anon_sym_parent] = ACTIONS(1070), + [anon_sym_POUND_LBRACK] = ACTIONS(1068), + [sym_string] = ACTIONS(1068), + [sym_boolean] = ACTIONS(1070), + [sym_null] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_yield] = ACTIONS(1070), + [aux_sym_include_expression_token1] = ACTIONS(1070), + [aux_sym_include_once_expression_token1] = ACTIONS(1070), + [aux_sym_require_expression_token1] = ACTIONS(1070), + [aux_sym_require_once_expression_token1] = ACTIONS(1070), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1063), + [sym_heredoc] = ACTIONS(1068), }, [448] = { [sym_text_interpolation] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1067), - [sym_name] = ACTIONS(1069), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1067), - [aux_sym_function_static_declaration_token1] = ACTIONS(1069), - [aux_sym_global_declaration_token1] = ACTIONS(1069), - [aux_sym_namespace_definition_token1] = ACTIONS(1069), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1069), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1069), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1069), - [anon_sym_BSLASH] = ACTIONS(1067), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(1067), - [aux_sym_trait_declaration_token1] = ACTIONS(1069), - [aux_sym_interface_declaration_token1] = ACTIONS(1069), - [aux_sym_class_declaration_token1] = ACTIONS(1069), - [aux_sym_class_modifier_token1] = ACTIONS(1069), - [aux_sym_class_modifier_token2] = ACTIONS(1069), - [aux_sym_visibility_modifier_token1] = ACTIONS(1069), - [aux_sym_visibility_modifier_token2] = ACTIONS(1069), - [aux_sym_visibility_modifier_token3] = ACTIONS(1069), - [aux_sym_arrow_function_token1] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_array] = ACTIONS(1069), - [anon_sym_unset] = ACTIONS(1069), - [aux_sym_echo_statement_token1] = ACTIONS(1069), - [anon_sym_declare] = ACTIONS(1069), - [aux_sym_declare_statement_token1] = ACTIONS(1069), - [sym_float] = ACTIONS(1069), - [aux_sym_try_statement_token1] = ACTIONS(1069), - [aux_sym_goto_statement_token1] = ACTIONS(1069), - [aux_sym_continue_statement_token1] = ACTIONS(1069), - [aux_sym_break_statement_token1] = ACTIONS(1069), - [sym_integer] = ACTIONS(1069), - [aux_sym_return_statement_token1] = ACTIONS(1069), - [aux_sym_throw_expression_token1] = ACTIONS(1069), - [aux_sym_while_statement_token1] = ACTIONS(1069), - [aux_sym_while_statement_token2] = ACTIONS(1069), - [aux_sym_do_statement_token1] = ACTIONS(1069), - [aux_sym_for_statement_token1] = ACTIONS(1069), - [aux_sym_for_statement_token2] = ACTIONS(1069), - [aux_sym_foreach_statement_token1] = ACTIONS(1069), - [aux_sym_foreach_statement_token2] = ACTIONS(1069), - [aux_sym_if_statement_token1] = ACTIONS(1069), - [aux_sym_if_statement_token2] = ACTIONS(1069), - [aux_sym_else_if_clause_token1] = ACTIONS(1069), - [aux_sym_else_clause_token1] = ACTIONS(1069), - [aux_sym_match_expression_token1] = ACTIONS(1069), - [aux_sym_match_default_expression_token1] = ACTIONS(1069), - [aux_sym_switch_statement_token1] = ACTIONS(1069), - [aux_sym_switch_block_token1] = ACTIONS(1069), - [aux_sym_case_statement_token1] = ACTIONS(1069), - [anon_sym_AT] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_clone] = ACTIONS(1069), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [sym_shell_command_expression] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1067), - [anon_sym_self] = ACTIONS(1069), - [anon_sym_parent] = ACTIONS(1069), - [anon_sym_POUND_LBRACK] = ACTIONS(1067), - [sym_string] = ACTIONS(1067), - [sym_boolean] = ACTIONS(1069), - [sym_null] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1067), - [anon_sym_yield] = ACTIONS(1069), - [aux_sym_include_expression_token1] = ACTIONS(1069), - [aux_sym_include_once_expression_token1] = ACTIONS(1069), - [aux_sym_require_expression_token1] = ACTIONS(1069), - [aux_sym_require_once_expression_token1] = ACTIONS(1069), + [ts_builtin_sym_end] = ACTIONS(1072), + [sym_name] = ACTIONS(1074), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1072), + [aux_sym_function_static_declaration_token1] = ACTIONS(1074), + [aux_sym_global_declaration_token1] = ACTIONS(1074), + [aux_sym_namespace_definition_token1] = ACTIONS(1074), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1074), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1074), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1074), + [anon_sym_BSLASH] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [aux_sym_trait_declaration_token1] = ACTIONS(1074), + [aux_sym_interface_declaration_token1] = ACTIONS(1074), + [aux_sym_class_declaration_token1] = ACTIONS(1074), + [aux_sym_final_modifier_token1] = ACTIONS(1074), + [aux_sym_abstract_modifier_token1] = ACTIONS(1074), + [aux_sym_visibility_modifier_token1] = ACTIONS(1074), + [aux_sym_visibility_modifier_token2] = ACTIONS(1074), + [aux_sym_visibility_modifier_token3] = ACTIONS(1074), + [aux_sym_arrow_function_token1] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_array] = ACTIONS(1074), + [anon_sym_unset] = ACTIONS(1074), + [aux_sym_echo_statement_token1] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [aux_sym_declare_statement_token1] = ACTIONS(1074), + [sym_float] = ACTIONS(1074), + [aux_sym_try_statement_token1] = ACTIONS(1074), + [aux_sym_goto_statement_token1] = ACTIONS(1074), + [aux_sym_continue_statement_token1] = ACTIONS(1074), + [aux_sym_break_statement_token1] = ACTIONS(1074), + [sym_integer] = ACTIONS(1074), + [aux_sym_return_statement_token1] = ACTIONS(1074), + [aux_sym_throw_expression_token1] = ACTIONS(1074), + [aux_sym_while_statement_token1] = ACTIONS(1074), + [aux_sym_while_statement_token2] = ACTIONS(1074), + [aux_sym_do_statement_token1] = ACTIONS(1074), + [aux_sym_for_statement_token1] = ACTIONS(1074), + [aux_sym_for_statement_token2] = ACTIONS(1074), + [aux_sym_foreach_statement_token1] = ACTIONS(1074), + [aux_sym_foreach_statement_token2] = ACTIONS(1074), + [aux_sym_if_statement_token1] = ACTIONS(1074), + [aux_sym_if_statement_token2] = ACTIONS(1074), + [aux_sym_else_if_clause_token1] = ACTIONS(1074), + [aux_sym_else_clause_token1] = ACTIONS(1074), + [aux_sym_match_expression_token1] = ACTIONS(1074), + [aux_sym_match_default_expression_token1] = ACTIONS(1074), + [aux_sym_switch_statement_token1] = ACTIONS(1074), + [aux_sym_switch_block_token1] = ACTIONS(1074), + [aux_sym_case_statement_token1] = ACTIONS(1074), + [anon_sym_AT] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1072), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_clone] = ACTIONS(1074), + [anon_sym_print] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [sym_shell_command_expression] = ACTIONS(1072), + [anon_sym_list] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_self] = ACTIONS(1074), + [anon_sym_parent] = ACTIONS(1074), + [anon_sym_POUND_LBRACK] = ACTIONS(1072), + [sym_string] = ACTIONS(1072), + [sym_boolean] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_yield] = ACTIONS(1074), + [aux_sym_include_expression_token1] = ACTIONS(1074), + [aux_sym_include_once_expression_token1] = ACTIONS(1074), + [aux_sym_require_expression_token1] = ACTIONS(1074), + [aux_sym_require_once_expression_token1] = ACTIONS(1074), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1067), + [sym_heredoc] = ACTIONS(1072), }, [449] = { [sym_text_interpolation] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1071), - [sym_name] = ACTIONS(1073), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1071), - [aux_sym_function_static_declaration_token1] = ACTIONS(1073), - [aux_sym_global_declaration_token1] = ACTIONS(1073), - [aux_sym_namespace_definition_token1] = ACTIONS(1073), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1073), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1073), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1073), - [anon_sym_BSLASH] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_RBRACE] = ACTIONS(1071), - [aux_sym_trait_declaration_token1] = ACTIONS(1073), - [aux_sym_interface_declaration_token1] = ACTIONS(1073), - [aux_sym_class_declaration_token1] = ACTIONS(1073), - [aux_sym_class_modifier_token1] = ACTIONS(1073), - [aux_sym_class_modifier_token2] = ACTIONS(1073), - [aux_sym_visibility_modifier_token1] = ACTIONS(1073), - [aux_sym_visibility_modifier_token2] = ACTIONS(1073), - [aux_sym_visibility_modifier_token3] = ACTIONS(1073), - [aux_sym_arrow_function_token1] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1071), - [anon_sym_array] = ACTIONS(1073), - [anon_sym_unset] = ACTIONS(1073), - [aux_sym_echo_statement_token1] = ACTIONS(1073), - [anon_sym_declare] = ACTIONS(1073), - [aux_sym_declare_statement_token1] = ACTIONS(1073), - [sym_float] = ACTIONS(1073), - [aux_sym_try_statement_token1] = ACTIONS(1073), - [aux_sym_goto_statement_token1] = ACTIONS(1073), - [aux_sym_continue_statement_token1] = ACTIONS(1073), - [aux_sym_break_statement_token1] = ACTIONS(1073), - [sym_integer] = ACTIONS(1073), - [aux_sym_return_statement_token1] = ACTIONS(1073), - [aux_sym_throw_expression_token1] = ACTIONS(1073), - [aux_sym_while_statement_token1] = ACTIONS(1073), - [aux_sym_while_statement_token2] = ACTIONS(1073), - [aux_sym_do_statement_token1] = ACTIONS(1073), - [aux_sym_for_statement_token1] = ACTIONS(1073), - [aux_sym_for_statement_token2] = ACTIONS(1073), - [aux_sym_foreach_statement_token1] = ACTIONS(1073), - [aux_sym_foreach_statement_token2] = ACTIONS(1073), - [aux_sym_if_statement_token1] = ACTIONS(1073), - [aux_sym_if_statement_token2] = ACTIONS(1073), - [aux_sym_else_if_clause_token1] = ACTIONS(1073), - [aux_sym_else_clause_token1] = ACTIONS(1073), - [aux_sym_match_expression_token1] = ACTIONS(1073), - [aux_sym_match_default_expression_token1] = ACTIONS(1073), - [aux_sym_switch_statement_token1] = ACTIONS(1073), - [aux_sym_switch_block_token1] = ACTIONS(1073), - [aux_sym_case_statement_token1] = ACTIONS(1073), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_TILDE] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_clone] = ACTIONS(1073), - [anon_sym_print] = ACTIONS(1073), - [anon_sym_new] = ACTIONS(1073), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [sym_shell_command_expression] = ACTIONS(1071), - [anon_sym_list] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(1071), - [anon_sym_self] = ACTIONS(1073), - [anon_sym_parent] = ACTIONS(1073), - [anon_sym_POUND_LBRACK] = ACTIONS(1071), - [sym_string] = ACTIONS(1071), - [sym_boolean] = ACTIONS(1073), - [sym_null] = ACTIONS(1073), - [anon_sym_DOLLAR] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [aux_sym_include_expression_token1] = ACTIONS(1073), - [aux_sym_include_once_expression_token1] = ACTIONS(1073), - [aux_sym_require_expression_token1] = ACTIONS(1073), - [aux_sym_require_once_expression_token1] = ACTIONS(1073), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_name] = ACTIONS(1078), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1076), + [aux_sym_function_static_declaration_token1] = ACTIONS(1078), + [aux_sym_global_declaration_token1] = ACTIONS(1078), + [aux_sym_namespace_definition_token1] = ACTIONS(1078), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1078), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1078), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1078), + [anon_sym_BSLASH] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [aux_sym_trait_declaration_token1] = ACTIONS(1078), + [aux_sym_interface_declaration_token1] = ACTIONS(1078), + [aux_sym_class_declaration_token1] = ACTIONS(1078), + [aux_sym_final_modifier_token1] = ACTIONS(1078), + [aux_sym_abstract_modifier_token1] = ACTIONS(1078), + [aux_sym_visibility_modifier_token1] = ACTIONS(1078), + [aux_sym_visibility_modifier_token2] = ACTIONS(1078), + [aux_sym_visibility_modifier_token3] = ACTIONS(1078), + [aux_sym_arrow_function_token1] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_array] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1078), + [aux_sym_echo_statement_token1] = ACTIONS(1078), + [anon_sym_declare] = ACTIONS(1078), + [aux_sym_declare_statement_token1] = ACTIONS(1078), + [sym_float] = ACTIONS(1078), + [aux_sym_try_statement_token1] = ACTIONS(1078), + [aux_sym_goto_statement_token1] = ACTIONS(1078), + [aux_sym_continue_statement_token1] = ACTIONS(1078), + [aux_sym_break_statement_token1] = ACTIONS(1078), + [sym_integer] = ACTIONS(1078), + [aux_sym_return_statement_token1] = ACTIONS(1078), + [aux_sym_throw_expression_token1] = ACTIONS(1078), + [aux_sym_while_statement_token1] = ACTIONS(1078), + [aux_sym_while_statement_token2] = ACTIONS(1078), + [aux_sym_do_statement_token1] = ACTIONS(1078), + [aux_sym_for_statement_token1] = ACTIONS(1078), + [aux_sym_for_statement_token2] = ACTIONS(1078), + [aux_sym_foreach_statement_token1] = ACTIONS(1078), + [aux_sym_foreach_statement_token2] = ACTIONS(1078), + [aux_sym_if_statement_token1] = ACTIONS(1078), + [aux_sym_if_statement_token2] = ACTIONS(1078), + [aux_sym_else_if_clause_token1] = ACTIONS(1078), + [aux_sym_else_clause_token1] = ACTIONS(1078), + [aux_sym_match_expression_token1] = ACTIONS(1078), + [aux_sym_match_default_expression_token1] = ACTIONS(1078), + [aux_sym_switch_statement_token1] = ACTIONS(1078), + [aux_sym_switch_block_token1] = ACTIONS(1078), + [aux_sym_case_statement_token1] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_clone] = ACTIONS(1078), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [sym_shell_command_expression] = ACTIONS(1076), + [anon_sym_list] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_self] = ACTIONS(1078), + [anon_sym_parent] = ACTIONS(1078), + [anon_sym_POUND_LBRACK] = ACTIONS(1076), + [sym_string] = ACTIONS(1076), + [sym_boolean] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1078), + [aux_sym_include_expression_token1] = ACTIONS(1078), + [aux_sym_include_once_expression_token1] = ACTIONS(1078), + [aux_sym_require_expression_token1] = ACTIONS(1078), + [aux_sym_require_once_expression_token1] = ACTIONS(1078), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1071), + [sym_heredoc] = ACTIONS(1076), }, [450] = { [sym_text_interpolation] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1075), - [sym_name] = ACTIONS(1077), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1075), - [aux_sym_function_static_declaration_token1] = ACTIONS(1077), - [aux_sym_global_declaration_token1] = ACTIONS(1077), - [aux_sym_namespace_definition_token1] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1077), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1077), - [anon_sym_BSLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [aux_sym_trait_declaration_token1] = ACTIONS(1077), - [aux_sym_interface_declaration_token1] = ACTIONS(1077), - [aux_sym_class_declaration_token1] = ACTIONS(1077), - [aux_sym_class_modifier_token1] = ACTIONS(1077), - [aux_sym_class_modifier_token2] = ACTIONS(1077), - [aux_sym_visibility_modifier_token1] = ACTIONS(1077), - [aux_sym_visibility_modifier_token2] = ACTIONS(1077), - [aux_sym_visibility_modifier_token3] = ACTIONS(1077), - [aux_sym_arrow_function_token1] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_array] = ACTIONS(1077), - [anon_sym_unset] = ACTIONS(1077), - [aux_sym_echo_statement_token1] = ACTIONS(1077), - [anon_sym_declare] = ACTIONS(1077), - [aux_sym_declare_statement_token1] = ACTIONS(1077), - [sym_float] = ACTIONS(1077), - [aux_sym_try_statement_token1] = ACTIONS(1077), - [aux_sym_goto_statement_token1] = ACTIONS(1077), - [aux_sym_continue_statement_token1] = ACTIONS(1077), - [aux_sym_break_statement_token1] = ACTIONS(1077), - [sym_integer] = ACTIONS(1077), - [aux_sym_return_statement_token1] = ACTIONS(1077), - [aux_sym_throw_expression_token1] = ACTIONS(1077), - [aux_sym_while_statement_token1] = ACTIONS(1077), - [aux_sym_while_statement_token2] = ACTIONS(1077), - [aux_sym_do_statement_token1] = ACTIONS(1077), - [aux_sym_for_statement_token1] = ACTIONS(1077), - [aux_sym_for_statement_token2] = ACTIONS(1077), - [aux_sym_foreach_statement_token1] = ACTIONS(1077), - [aux_sym_foreach_statement_token2] = ACTIONS(1077), - [aux_sym_if_statement_token1] = ACTIONS(1077), - [aux_sym_if_statement_token2] = ACTIONS(1077), - [aux_sym_else_if_clause_token1] = ACTIONS(1077), - [aux_sym_else_clause_token1] = ACTIONS(1077), - [aux_sym_match_expression_token1] = ACTIONS(1077), - [aux_sym_match_default_expression_token1] = ACTIONS(1077), - [aux_sym_switch_statement_token1] = ACTIONS(1077), - [aux_sym_switch_block_token1] = ACTIONS(1077), - [aux_sym_case_statement_token1] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_clone] = ACTIONS(1077), - [anon_sym_print] = ACTIONS(1077), - [anon_sym_new] = ACTIONS(1077), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [sym_shell_command_expression] = ACTIONS(1075), - [anon_sym_list] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_self] = ACTIONS(1077), - [anon_sym_parent] = ACTIONS(1077), - [anon_sym_POUND_LBRACK] = ACTIONS(1075), - [sym_string] = ACTIONS(1075), - [sym_boolean] = ACTIONS(1077), - [sym_null] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(1075), - [anon_sym_yield] = ACTIONS(1077), - [aux_sym_include_expression_token1] = ACTIONS(1077), - [aux_sym_include_once_expression_token1] = ACTIONS(1077), - [aux_sym_require_expression_token1] = ACTIONS(1077), - [aux_sym_require_once_expression_token1] = ACTIONS(1077), + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_name] = ACTIONS(1082), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1080), + [aux_sym_function_static_declaration_token1] = ACTIONS(1082), + [aux_sym_global_declaration_token1] = ACTIONS(1082), + [aux_sym_namespace_definition_token1] = ACTIONS(1082), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1082), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1082), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1082), + [anon_sym_BSLASH] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [aux_sym_trait_declaration_token1] = ACTIONS(1082), + [aux_sym_interface_declaration_token1] = ACTIONS(1082), + [aux_sym_class_declaration_token1] = ACTIONS(1082), + [aux_sym_final_modifier_token1] = ACTIONS(1082), + [aux_sym_abstract_modifier_token1] = ACTIONS(1082), + [aux_sym_visibility_modifier_token1] = ACTIONS(1082), + [aux_sym_visibility_modifier_token2] = ACTIONS(1082), + [aux_sym_visibility_modifier_token3] = ACTIONS(1082), + [aux_sym_arrow_function_token1] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_array] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [aux_sym_echo_statement_token1] = ACTIONS(1082), + [anon_sym_declare] = ACTIONS(1082), + [aux_sym_declare_statement_token1] = ACTIONS(1082), + [sym_float] = ACTIONS(1082), + [aux_sym_try_statement_token1] = ACTIONS(1082), + [aux_sym_goto_statement_token1] = ACTIONS(1082), + [aux_sym_continue_statement_token1] = ACTIONS(1082), + [aux_sym_break_statement_token1] = ACTIONS(1082), + [sym_integer] = ACTIONS(1082), + [aux_sym_return_statement_token1] = ACTIONS(1082), + [aux_sym_throw_expression_token1] = ACTIONS(1082), + [aux_sym_while_statement_token1] = ACTIONS(1082), + [aux_sym_while_statement_token2] = ACTIONS(1082), + [aux_sym_do_statement_token1] = ACTIONS(1082), + [aux_sym_for_statement_token1] = ACTIONS(1082), + [aux_sym_for_statement_token2] = ACTIONS(1082), + [aux_sym_foreach_statement_token1] = ACTIONS(1082), + [aux_sym_foreach_statement_token2] = ACTIONS(1082), + [aux_sym_if_statement_token1] = ACTIONS(1082), + [aux_sym_if_statement_token2] = ACTIONS(1082), + [aux_sym_else_if_clause_token1] = ACTIONS(1082), + [aux_sym_else_clause_token1] = ACTIONS(1082), + [aux_sym_match_expression_token1] = ACTIONS(1082), + [aux_sym_match_default_expression_token1] = ACTIONS(1082), + [aux_sym_switch_statement_token1] = ACTIONS(1082), + [aux_sym_switch_block_token1] = ACTIONS(1082), + [aux_sym_case_statement_token1] = ACTIONS(1082), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_clone] = ACTIONS(1082), + [anon_sym_print] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [sym_shell_command_expression] = ACTIONS(1080), + [anon_sym_list] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_self] = ACTIONS(1082), + [anon_sym_parent] = ACTIONS(1082), + [anon_sym_POUND_LBRACK] = ACTIONS(1080), + [sym_string] = ACTIONS(1080), + [sym_boolean] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1082), + [aux_sym_include_expression_token1] = ACTIONS(1082), + [aux_sym_include_once_expression_token1] = ACTIONS(1082), + [aux_sym_require_expression_token1] = ACTIONS(1082), + [aux_sym_require_once_expression_token1] = ACTIONS(1082), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1075), + [sym_heredoc] = ACTIONS(1080), }, [451] = { [sym_text_interpolation] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1079), - [sym_name] = ACTIONS(1081), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1079), - [aux_sym_function_static_declaration_token1] = ACTIONS(1081), - [aux_sym_global_declaration_token1] = ACTIONS(1081), - [aux_sym_namespace_definition_token1] = ACTIONS(1081), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1081), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1081), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1079), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), - [aux_sym_trait_declaration_token1] = ACTIONS(1081), - [aux_sym_interface_declaration_token1] = ACTIONS(1081), - [aux_sym_class_declaration_token1] = ACTIONS(1081), - [aux_sym_class_modifier_token1] = ACTIONS(1081), - [aux_sym_class_modifier_token2] = ACTIONS(1081), - [aux_sym_visibility_modifier_token1] = ACTIONS(1081), - [aux_sym_visibility_modifier_token2] = ACTIONS(1081), - [aux_sym_visibility_modifier_token3] = ACTIONS(1081), - [aux_sym_arrow_function_token1] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_array] = ACTIONS(1081), - [anon_sym_unset] = ACTIONS(1081), - [aux_sym_echo_statement_token1] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [aux_sym_declare_statement_token1] = ACTIONS(1081), - [sym_float] = ACTIONS(1081), - [aux_sym_try_statement_token1] = ACTIONS(1081), - [aux_sym_goto_statement_token1] = ACTIONS(1081), - [aux_sym_continue_statement_token1] = ACTIONS(1081), - [aux_sym_break_statement_token1] = ACTIONS(1081), - [sym_integer] = ACTIONS(1081), - [aux_sym_return_statement_token1] = ACTIONS(1081), - [aux_sym_throw_expression_token1] = ACTIONS(1081), - [aux_sym_while_statement_token1] = ACTIONS(1081), - [aux_sym_while_statement_token2] = ACTIONS(1081), - [aux_sym_do_statement_token1] = ACTIONS(1081), - [aux_sym_for_statement_token1] = ACTIONS(1081), - [aux_sym_for_statement_token2] = ACTIONS(1081), - [aux_sym_foreach_statement_token1] = ACTIONS(1081), - [aux_sym_foreach_statement_token2] = ACTIONS(1081), - [aux_sym_if_statement_token1] = ACTIONS(1081), - [aux_sym_if_statement_token2] = ACTIONS(1081), - [aux_sym_else_if_clause_token1] = ACTIONS(1081), - [aux_sym_else_clause_token1] = ACTIONS(1081), - [aux_sym_match_expression_token1] = ACTIONS(1081), - [aux_sym_match_default_expression_token1] = ACTIONS(1081), - [aux_sym_switch_statement_token1] = ACTIONS(1081), - [aux_sym_switch_block_token1] = ACTIONS(1081), - [aux_sym_case_statement_token1] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_clone] = ACTIONS(1081), - [anon_sym_print] = ACTIONS(1081), - [anon_sym_new] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [sym_shell_command_expression] = ACTIONS(1079), - [anon_sym_list] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_self] = ACTIONS(1081), - [anon_sym_parent] = ACTIONS(1081), - [anon_sym_POUND_LBRACK] = ACTIONS(1079), - [sym_string] = ACTIONS(1079), - [sym_boolean] = ACTIONS(1081), - [sym_null] = ACTIONS(1081), - [anon_sym_DOLLAR] = ACTIONS(1079), - [anon_sym_yield] = ACTIONS(1081), - [aux_sym_include_expression_token1] = ACTIONS(1081), - [aux_sym_include_once_expression_token1] = ACTIONS(1081), - [aux_sym_require_expression_token1] = ACTIONS(1081), - [aux_sym_require_once_expression_token1] = ACTIONS(1081), + [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_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), + [anon_sym_array] = ACTIONS(964), + [anon_sym_unset] = ACTIONS(964), + [aux_sym_echo_statement_token1] = ACTIONS(964), + [anon_sym_declare] = ACTIONS(964), + [aux_sym_declare_statement_token1] = ACTIONS(964), + [sym_float] = ACTIONS(964), + [aux_sym_try_statement_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), + [aux_sym_case_statement_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), + [anon_sym_clone] = ACTIONS(964), + [anon_sym_print] = ACTIONS(964), + [anon_sym_new] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(962), + [sym_shell_command_expression] = ACTIONS(962), + [anon_sym_list] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_self] = ACTIONS(964), + [anon_sym_parent] = ACTIONS(964), + [anon_sym_POUND_LBRACK] = ACTIONS(962), + [sym_string] = ACTIONS(962), + [sym_boolean] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_yield] = 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(1079), + [sym_heredoc] = ACTIONS(962), }, [452] = { [sym_text_interpolation] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_name] = ACTIONS(1085), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1083), - [aux_sym_function_static_declaration_token1] = ACTIONS(1085), - [aux_sym_global_declaration_token1] = ACTIONS(1085), - [aux_sym_namespace_definition_token1] = ACTIONS(1085), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1085), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1085), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1083), - [aux_sym_trait_declaration_token1] = ACTIONS(1085), - [aux_sym_interface_declaration_token1] = ACTIONS(1085), - [aux_sym_class_declaration_token1] = ACTIONS(1085), - [aux_sym_class_modifier_token1] = ACTIONS(1085), - [aux_sym_class_modifier_token2] = ACTIONS(1085), - [aux_sym_visibility_modifier_token1] = ACTIONS(1085), - [aux_sym_visibility_modifier_token2] = ACTIONS(1085), - [aux_sym_visibility_modifier_token3] = ACTIONS(1085), - [aux_sym_arrow_function_token1] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_array] = ACTIONS(1085), - [anon_sym_unset] = ACTIONS(1085), - [aux_sym_echo_statement_token1] = ACTIONS(1085), - [anon_sym_declare] = ACTIONS(1085), - [aux_sym_declare_statement_token1] = ACTIONS(1085), - [sym_float] = ACTIONS(1085), - [aux_sym_try_statement_token1] = ACTIONS(1085), - [aux_sym_goto_statement_token1] = ACTIONS(1085), - [aux_sym_continue_statement_token1] = ACTIONS(1085), - [aux_sym_break_statement_token1] = ACTIONS(1085), - [sym_integer] = ACTIONS(1085), - [aux_sym_return_statement_token1] = ACTIONS(1085), - [aux_sym_throw_expression_token1] = ACTIONS(1085), - [aux_sym_while_statement_token1] = ACTIONS(1085), - [aux_sym_while_statement_token2] = ACTIONS(1085), - [aux_sym_do_statement_token1] = ACTIONS(1085), - [aux_sym_for_statement_token1] = ACTIONS(1085), - [aux_sym_for_statement_token2] = ACTIONS(1085), - [aux_sym_foreach_statement_token1] = ACTIONS(1085), - [aux_sym_foreach_statement_token2] = ACTIONS(1085), - [aux_sym_if_statement_token1] = ACTIONS(1085), - [aux_sym_if_statement_token2] = ACTIONS(1085), - [aux_sym_else_if_clause_token1] = ACTIONS(1085), - [aux_sym_else_clause_token1] = ACTIONS(1085), - [aux_sym_match_expression_token1] = ACTIONS(1085), - [aux_sym_match_default_expression_token1] = ACTIONS(1085), - [aux_sym_switch_statement_token1] = ACTIONS(1085), - [aux_sym_switch_block_token1] = ACTIONS(1085), - [aux_sym_case_statement_token1] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_clone] = ACTIONS(1085), - [anon_sym_print] = ACTIONS(1085), - [anon_sym_new] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [sym_shell_command_expression] = ACTIONS(1083), - [anon_sym_list] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_self] = ACTIONS(1085), - [anon_sym_parent] = ACTIONS(1085), - [anon_sym_POUND_LBRACK] = ACTIONS(1083), - [sym_string] = ACTIONS(1083), - [sym_boolean] = ACTIONS(1085), - [sym_null] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(1083), - [anon_sym_yield] = ACTIONS(1085), - [aux_sym_include_expression_token1] = ACTIONS(1085), - [aux_sym_include_once_expression_token1] = ACTIONS(1085), - [aux_sym_require_expression_token1] = ACTIONS(1085), - [aux_sym_require_once_expression_token1] = ACTIONS(1085), + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_name] = ACTIONS(1086), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1084), + [aux_sym_function_static_declaration_token1] = ACTIONS(1086), + [aux_sym_global_declaration_token1] = ACTIONS(1086), + [aux_sym_namespace_definition_token1] = ACTIONS(1086), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1086), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1086), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1086), + [anon_sym_BSLASH] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [aux_sym_trait_declaration_token1] = ACTIONS(1086), + [aux_sym_interface_declaration_token1] = ACTIONS(1086), + [aux_sym_class_declaration_token1] = ACTIONS(1086), + [aux_sym_final_modifier_token1] = ACTIONS(1086), + [aux_sym_abstract_modifier_token1] = ACTIONS(1086), + [aux_sym_visibility_modifier_token1] = ACTIONS(1086), + [aux_sym_visibility_modifier_token2] = ACTIONS(1086), + [aux_sym_visibility_modifier_token3] = ACTIONS(1086), + [aux_sym_arrow_function_token1] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_array] = ACTIONS(1086), + [anon_sym_unset] = ACTIONS(1086), + [aux_sym_echo_statement_token1] = ACTIONS(1086), + [anon_sym_declare] = ACTIONS(1086), + [aux_sym_declare_statement_token1] = ACTIONS(1086), + [sym_float] = ACTIONS(1086), + [aux_sym_try_statement_token1] = ACTIONS(1086), + [aux_sym_goto_statement_token1] = ACTIONS(1086), + [aux_sym_continue_statement_token1] = ACTIONS(1086), + [aux_sym_break_statement_token1] = ACTIONS(1086), + [sym_integer] = ACTIONS(1086), + [aux_sym_return_statement_token1] = ACTIONS(1086), + [aux_sym_throw_expression_token1] = ACTIONS(1086), + [aux_sym_while_statement_token1] = ACTIONS(1086), + [aux_sym_while_statement_token2] = ACTIONS(1086), + [aux_sym_do_statement_token1] = ACTIONS(1086), + [aux_sym_for_statement_token1] = ACTIONS(1086), + [aux_sym_for_statement_token2] = ACTIONS(1086), + [aux_sym_foreach_statement_token1] = ACTIONS(1086), + [aux_sym_foreach_statement_token2] = ACTIONS(1086), + [aux_sym_if_statement_token1] = ACTIONS(1086), + [aux_sym_if_statement_token2] = ACTIONS(1086), + [aux_sym_else_if_clause_token1] = ACTIONS(1086), + [aux_sym_else_clause_token1] = ACTIONS(1086), + [aux_sym_match_expression_token1] = ACTIONS(1086), + [aux_sym_match_default_expression_token1] = ACTIONS(1086), + [aux_sym_switch_statement_token1] = ACTIONS(1086), + [aux_sym_switch_block_token1] = ACTIONS(1086), + [aux_sym_case_statement_token1] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_clone] = ACTIONS(1086), + [anon_sym_print] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [sym_shell_command_expression] = ACTIONS(1084), + [anon_sym_list] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_self] = ACTIONS(1086), + [anon_sym_parent] = ACTIONS(1086), + [anon_sym_POUND_LBRACK] = ACTIONS(1084), + [sym_string] = ACTIONS(1084), + [sym_boolean] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [aux_sym_include_expression_token1] = ACTIONS(1086), + [aux_sym_include_once_expression_token1] = ACTIONS(1086), + [aux_sym_require_expression_token1] = ACTIONS(1086), + [aux_sym_require_once_expression_token1] = ACTIONS(1086), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1083), + [sym_heredoc] = ACTIONS(1084), }, [453] = { [sym_text_interpolation] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1087), - [sym_name] = ACTIONS(1089), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1087), - [aux_sym_function_static_declaration_token1] = ACTIONS(1089), - [aux_sym_global_declaration_token1] = ACTIONS(1089), - [aux_sym_namespace_definition_token1] = ACTIONS(1089), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1089), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1089), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1089), - [anon_sym_BSLASH] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1087), - [aux_sym_trait_declaration_token1] = ACTIONS(1089), - [aux_sym_interface_declaration_token1] = ACTIONS(1089), - [aux_sym_class_declaration_token1] = ACTIONS(1089), - [aux_sym_class_modifier_token1] = ACTIONS(1089), - [aux_sym_class_modifier_token2] = ACTIONS(1089), - [aux_sym_visibility_modifier_token1] = ACTIONS(1089), - [aux_sym_visibility_modifier_token2] = ACTIONS(1089), - [aux_sym_visibility_modifier_token3] = ACTIONS(1089), - [aux_sym_arrow_function_token1] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_array] = ACTIONS(1089), - [anon_sym_unset] = ACTIONS(1089), - [aux_sym_echo_statement_token1] = ACTIONS(1089), - [anon_sym_declare] = ACTIONS(1089), - [aux_sym_declare_statement_token1] = ACTIONS(1089), - [sym_float] = ACTIONS(1089), - [aux_sym_try_statement_token1] = ACTIONS(1089), - [aux_sym_goto_statement_token1] = ACTIONS(1089), - [aux_sym_continue_statement_token1] = ACTIONS(1089), - [aux_sym_break_statement_token1] = ACTIONS(1089), - [sym_integer] = ACTIONS(1089), - [aux_sym_return_statement_token1] = ACTIONS(1089), - [aux_sym_throw_expression_token1] = ACTIONS(1089), - [aux_sym_while_statement_token1] = ACTIONS(1089), - [aux_sym_while_statement_token2] = ACTIONS(1089), - [aux_sym_do_statement_token1] = ACTIONS(1089), - [aux_sym_for_statement_token1] = ACTIONS(1089), - [aux_sym_for_statement_token2] = ACTIONS(1089), - [aux_sym_foreach_statement_token1] = ACTIONS(1089), - [aux_sym_foreach_statement_token2] = ACTIONS(1089), - [aux_sym_if_statement_token1] = ACTIONS(1089), - [aux_sym_if_statement_token2] = ACTIONS(1089), - [aux_sym_else_if_clause_token1] = ACTIONS(1089), - [aux_sym_else_clause_token1] = ACTIONS(1089), - [aux_sym_match_expression_token1] = ACTIONS(1089), - [aux_sym_match_default_expression_token1] = ACTIONS(1089), - [aux_sym_switch_statement_token1] = ACTIONS(1089), - [aux_sym_switch_block_token1] = ACTIONS(1089), - [aux_sym_case_statement_token1] = ACTIONS(1089), - [anon_sym_AT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_clone] = ACTIONS(1089), - [anon_sym_print] = ACTIONS(1089), - [anon_sym_new] = ACTIONS(1089), - [anon_sym_PLUS_PLUS] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1087), - [sym_shell_command_expression] = ACTIONS(1087), - [anon_sym_list] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_self] = ACTIONS(1089), - [anon_sym_parent] = ACTIONS(1089), - [anon_sym_POUND_LBRACK] = ACTIONS(1087), - [sym_string] = ACTIONS(1087), - [sym_boolean] = ACTIONS(1089), - [sym_null] = ACTIONS(1089), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_yield] = ACTIONS(1089), - [aux_sym_include_expression_token1] = ACTIONS(1089), - [aux_sym_include_once_expression_token1] = ACTIONS(1089), - [aux_sym_require_expression_token1] = ACTIONS(1089), - [aux_sym_require_once_expression_token1] = ACTIONS(1089), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_name] = ACTIONS(1090), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1088), + [aux_sym_function_static_declaration_token1] = ACTIONS(1090), + [aux_sym_global_declaration_token1] = ACTIONS(1090), + [aux_sym_namespace_definition_token1] = ACTIONS(1090), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1090), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1090), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1090), + [anon_sym_BSLASH] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [aux_sym_trait_declaration_token1] = ACTIONS(1090), + [aux_sym_interface_declaration_token1] = ACTIONS(1090), + [aux_sym_class_declaration_token1] = ACTIONS(1090), + [aux_sym_final_modifier_token1] = ACTIONS(1090), + [aux_sym_abstract_modifier_token1] = ACTIONS(1090), + [aux_sym_visibility_modifier_token1] = ACTIONS(1090), + [aux_sym_visibility_modifier_token2] = ACTIONS(1090), + [aux_sym_visibility_modifier_token3] = ACTIONS(1090), + [aux_sym_arrow_function_token1] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_array] = ACTIONS(1090), + [anon_sym_unset] = ACTIONS(1090), + [aux_sym_echo_statement_token1] = ACTIONS(1090), + [anon_sym_declare] = ACTIONS(1090), + [aux_sym_declare_statement_token1] = ACTIONS(1090), + [sym_float] = ACTIONS(1090), + [aux_sym_try_statement_token1] = ACTIONS(1090), + [aux_sym_goto_statement_token1] = ACTIONS(1090), + [aux_sym_continue_statement_token1] = ACTIONS(1090), + [aux_sym_break_statement_token1] = ACTIONS(1090), + [sym_integer] = ACTIONS(1090), + [aux_sym_return_statement_token1] = ACTIONS(1090), + [aux_sym_throw_expression_token1] = ACTIONS(1090), + [aux_sym_while_statement_token1] = ACTIONS(1090), + [aux_sym_while_statement_token2] = ACTIONS(1090), + [aux_sym_do_statement_token1] = ACTIONS(1090), + [aux_sym_for_statement_token1] = ACTIONS(1090), + [aux_sym_for_statement_token2] = ACTIONS(1090), + [aux_sym_foreach_statement_token1] = ACTIONS(1090), + [aux_sym_foreach_statement_token2] = ACTIONS(1090), + [aux_sym_if_statement_token1] = ACTIONS(1090), + [aux_sym_if_statement_token2] = ACTIONS(1090), + [aux_sym_else_if_clause_token1] = ACTIONS(1090), + [aux_sym_else_clause_token1] = ACTIONS(1090), + [aux_sym_match_expression_token1] = ACTIONS(1090), + [aux_sym_match_default_expression_token1] = ACTIONS(1090), + [aux_sym_switch_statement_token1] = ACTIONS(1090), + [aux_sym_switch_block_token1] = ACTIONS(1090), + [aux_sym_case_statement_token1] = ACTIONS(1090), + [anon_sym_AT] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_clone] = ACTIONS(1090), + [anon_sym_print] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [sym_shell_command_expression] = ACTIONS(1088), + [anon_sym_list] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_self] = ACTIONS(1090), + [anon_sym_parent] = ACTIONS(1090), + [anon_sym_POUND_LBRACK] = ACTIONS(1088), + [sym_string] = ACTIONS(1088), + [sym_boolean] = ACTIONS(1090), + [sym_null] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1088), + [anon_sym_yield] = ACTIONS(1090), + [aux_sym_include_expression_token1] = ACTIONS(1090), + [aux_sym_include_once_expression_token1] = ACTIONS(1090), + [aux_sym_require_expression_token1] = ACTIONS(1090), + [aux_sym_require_once_expression_token1] = ACTIONS(1090), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1087), + [sym_heredoc] = ACTIONS(1088), }, [454] = { [sym_text_interpolation] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(1091), - [sym_name] = ACTIONS(1093), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1091), - [aux_sym_function_static_declaration_token1] = ACTIONS(1093), - [aux_sym_global_declaration_token1] = ACTIONS(1093), - [aux_sym_namespace_definition_token1] = ACTIONS(1093), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1093), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1093), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1093), - [anon_sym_BSLASH] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_RBRACE] = ACTIONS(1091), - [aux_sym_trait_declaration_token1] = ACTIONS(1093), - [aux_sym_interface_declaration_token1] = ACTIONS(1093), - [aux_sym_class_declaration_token1] = ACTIONS(1093), - [aux_sym_class_modifier_token1] = ACTIONS(1093), - [aux_sym_class_modifier_token2] = ACTIONS(1093), - [aux_sym_visibility_modifier_token1] = ACTIONS(1093), - [aux_sym_visibility_modifier_token2] = ACTIONS(1093), - [aux_sym_visibility_modifier_token3] = ACTIONS(1093), - [aux_sym_arrow_function_token1] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_array] = ACTIONS(1093), - [anon_sym_unset] = ACTIONS(1093), - [aux_sym_echo_statement_token1] = ACTIONS(1093), - [anon_sym_declare] = ACTIONS(1093), - [aux_sym_declare_statement_token1] = ACTIONS(1093), - [sym_float] = ACTIONS(1093), - [aux_sym_try_statement_token1] = ACTIONS(1093), - [aux_sym_goto_statement_token1] = ACTIONS(1093), - [aux_sym_continue_statement_token1] = ACTIONS(1093), - [aux_sym_break_statement_token1] = ACTIONS(1093), - [sym_integer] = ACTIONS(1093), - [aux_sym_return_statement_token1] = ACTIONS(1093), - [aux_sym_throw_expression_token1] = ACTIONS(1093), - [aux_sym_while_statement_token1] = ACTIONS(1093), - [aux_sym_while_statement_token2] = ACTIONS(1093), - [aux_sym_do_statement_token1] = ACTIONS(1093), - [aux_sym_for_statement_token1] = ACTIONS(1093), - [aux_sym_for_statement_token2] = ACTIONS(1093), - [aux_sym_foreach_statement_token1] = ACTIONS(1093), - [aux_sym_foreach_statement_token2] = ACTIONS(1093), - [aux_sym_if_statement_token1] = ACTIONS(1093), - [aux_sym_if_statement_token2] = ACTIONS(1093), - [aux_sym_else_if_clause_token1] = ACTIONS(1093), - [aux_sym_else_clause_token1] = ACTIONS(1093), - [aux_sym_match_expression_token1] = ACTIONS(1093), - [aux_sym_match_default_expression_token1] = ACTIONS(1093), - [aux_sym_switch_statement_token1] = ACTIONS(1093), - [aux_sym_switch_block_token1] = ACTIONS(1093), - [aux_sym_case_statement_token1] = ACTIONS(1093), - [anon_sym_AT] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_clone] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1093), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [sym_shell_command_expression] = ACTIONS(1091), - [anon_sym_list] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1091), - [anon_sym_self] = ACTIONS(1093), - [anon_sym_parent] = ACTIONS(1093), - [anon_sym_POUND_LBRACK] = ACTIONS(1091), - [sym_string] = ACTIONS(1091), - [sym_boolean] = ACTIONS(1093), - [sym_null] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [aux_sym_include_expression_token1] = ACTIONS(1093), - [aux_sym_include_once_expression_token1] = ACTIONS(1093), - [aux_sym_require_expression_token1] = ACTIONS(1093), - [aux_sym_require_once_expression_token1] = ACTIONS(1093), + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_name] = ACTIONS(1094), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1092), + [aux_sym_function_static_declaration_token1] = ACTIONS(1094), + [aux_sym_global_declaration_token1] = ACTIONS(1094), + [aux_sym_namespace_definition_token1] = ACTIONS(1094), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1094), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1094), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1094), + [anon_sym_BSLASH] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [aux_sym_trait_declaration_token1] = ACTIONS(1094), + [aux_sym_interface_declaration_token1] = ACTIONS(1094), + [aux_sym_class_declaration_token1] = ACTIONS(1094), + [aux_sym_final_modifier_token1] = ACTIONS(1094), + [aux_sym_abstract_modifier_token1] = ACTIONS(1094), + [aux_sym_visibility_modifier_token1] = ACTIONS(1094), + [aux_sym_visibility_modifier_token2] = ACTIONS(1094), + [aux_sym_visibility_modifier_token3] = ACTIONS(1094), + [aux_sym_arrow_function_token1] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_array] = ACTIONS(1094), + [anon_sym_unset] = ACTIONS(1094), + [aux_sym_echo_statement_token1] = ACTIONS(1094), + [anon_sym_declare] = ACTIONS(1094), + [aux_sym_declare_statement_token1] = ACTIONS(1094), + [sym_float] = ACTIONS(1094), + [aux_sym_try_statement_token1] = ACTIONS(1094), + [aux_sym_goto_statement_token1] = ACTIONS(1094), + [aux_sym_continue_statement_token1] = ACTIONS(1094), + [aux_sym_break_statement_token1] = ACTIONS(1094), + [sym_integer] = ACTIONS(1094), + [aux_sym_return_statement_token1] = ACTIONS(1094), + [aux_sym_throw_expression_token1] = ACTIONS(1094), + [aux_sym_while_statement_token1] = ACTIONS(1094), + [aux_sym_while_statement_token2] = ACTIONS(1094), + [aux_sym_do_statement_token1] = ACTIONS(1094), + [aux_sym_for_statement_token1] = ACTIONS(1094), + [aux_sym_for_statement_token2] = ACTIONS(1094), + [aux_sym_foreach_statement_token1] = ACTIONS(1094), + [aux_sym_foreach_statement_token2] = ACTIONS(1094), + [aux_sym_if_statement_token1] = ACTIONS(1094), + [aux_sym_if_statement_token2] = ACTIONS(1094), + [aux_sym_else_if_clause_token1] = ACTIONS(1094), + [aux_sym_else_clause_token1] = ACTIONS(1094), + [aux_sym_match_expression_token1] = ACTIONS(1094), + [aux_sym_match_default_expression_token1] = ACTIONS(1094), + [aux_sym_switch_statement_token1] = ACTIONS(1094), + [aux_sym_switch_block_token1] = ACTIONS(1094), + [aux_sym_case_statement_token1] = ACTIONS(1094), + [anon_sym_AT] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_clone] = ACTIONS(1094), + [anon_sym_print] = ACTIONS(1094), + [anon_sym_new] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [sym_shell_command_expression] = ACTIONS(1092), + [anon_sym_list] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_self] = ACTIONS(1094), + [anon_sym_parent] = ACTIONS(1094), + [anon_sym_POUND_LBRACK] = ACTIONS(1092), + [sym_string] = ACTIONS(1092), + [sym_boolean] = ACTIONS(1094), + [sym_null] = ACTIONS(1094), + [anon_sym_DOLLAR] = ACTIONS(1092), + [anon_sym_yield] = ACTIONS(1094), + [aux_sym_include_expression_token1] = ACTIONS(1094), + [aux_sym_include_once_expression_token1] = ACTIONS(1094), + [aux_sym_require_expression_token1] = ACTIONS(1094), + [aux_sym_require_once_expression_token1] = ACTIONS(1094), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1091), + [sym_heredoc] = ACTIONS(1092), }, [455] = { [sym_text_interpolation] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_name] = ACTIONS(1097), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1095), - [aux_sym_function_static_declaration_token1] = ACTIONS(1097), - [aux_sym_global_declaration_token1] = ACTIONS(1097), - [aux_sym_namespace_definition_token1] = ACTIONS(1097), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1097), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1097), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1095), - [aux_sym_trait_declaration_token1] = ACTIONS(1097), - [aux_sym_interface_declaration_token1] = ACTIONS(1097), - [aux_sym_class_declaration_token1] = ACTIONS(1097), - [aux_sym_class_modifier_token1] = ACTIONS(1097), - [aux_sym_class_modifier_token2] = ACTIONS(1097), - [aux_sym_visibility_modifier_token1] = ACTIONS(1097), - [aux_sym_visibility_modifier_token2] = ACTIONS(1097), - [aux_sym_visibility_modifier_token3] = ACTIONS(1097), - [aux_sym_arrow_function_token1] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_array] = ACTIONS(1097), - [anon_sym_unset] = ACTIONS(1097), - [aux_sym_echo_statement_token1] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [aux_sym_declare_statement_token1] = ACTIONS(1097), - [sym_float] = ACTIONS(1097), - [aux_sym_try_statement_token1] = ACTIONS(1097), - [aux_sym_goto_statement_token1] = ACTIONS(1097), - [aux_sym_continue_statement_token1] = ACTIONS(1097), - [aux_sym_break_statement_token1] = ACTIONS(1097), - [sym_integer] = ACTIONS(1097), - [aux_sym_return_statement_token1] = ACTIONS(1097), - [aux_sym_throw_expression_token1] = ACTIONS(1097), - [aux_sym_while_statement_token1] = ACTIONS(1097), - [aux_sym_while_statement_token2] = ACTIONS(1097), - [aux_sym_do_statement_token1] = ACTIONS(1097), - [aux_sym_for_statement_token1] = ACTIONS(1097), - [aux_sym_for_statement_token2] = ACTIONS(1097), - [aux_sym_foreach_statement_token1] = ACTIONS(1097), - [aux_sym_foreach_statement_token2] = ACTIONS(1097), - [aux_sym_if_statement_token1] = ACTIONS(1097), - [aux_sym_if_statement_token2] = ACTIONS(1097), - [aux_sym_else_if_clause_token1] = ACTIONS(1097), - [aux_sym_else_clause_token1] = ACTIONS(1097), - [aux_sym_match_expression_token1] = ACTIONS(1097), - [aux_sym_match_default_expression_token1] = ACTIONS(1097), - [aux_sym_switch_statement_token1] = ACTIONS(1097), - [aux_sym_switch_block_token1] = ACTIONS(1097), - [aux_sym_case_statement_token1] = ACTIONS(1097), - [anon_sym_AT] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_clone] = ACTIONS(1097), - [anon_sym_print] = ACTIONS(1097), - [anon_sym_new] = ACTIONS(1097), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [sym_shell_command_expression] = ACTIONS(1095), - [anon_sym_list] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_self] = ACTIONS(1097), - [anon_sym_parent] = ACTIONS(1097), - [anon_sym_POUND_LBRACK] = ACTIONS(1095), - [sym_string] = ACTIONS(1095), - [sym_boolean] = ACTIONS(1097), - [sym_null] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1097), - [aux_sym_include_expression_token1] = ACTIONS(1097), - [aux_sym_include_once_expression_token1] = ACTIONS(1097), - [aux_sym_require_expression_token1] = ACTIONS(1097), - [aux_sym_require_once_expression_token1] = ACTIONS(1097), + [ts_builtin_sym_end] = ACTIONS(1096), + [sym_name] = ACTIONS(1098), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1096), + [aux_sym_function_static_declaration_token1] = ACTIONS(1098), + [aux_sym_global_declaration_token1] = ACTIONS(1098), + [aux_sym_namespace_definition_token1] = ACTIONS(1098), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1098), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1098), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1098), + [anon_sym_BSLASH] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_RBRACE] = ACTIONS(1096), + [aux_sym_trait_declaration_token1] = ACTIONS(1098), + [aux_sym_interface_declaration_token1] = ACTIONS(1098), + [aux_sym_class_declaration_token1] = ACTIONS(1098), + [aux_sym_final_modifier_token1] = ACTIONS(1098), + [aux_sym_abstract_modifier_token1] = ACTIONS(1098), + [aux_sym_visibility_modifier_token1] = ACTIONS(1098), + [aux_sym_visibility_modifier_token2] = ACTIONS(1098), + [aux_sym_visibility_modifier_token3] = ACTIONS(1098), + [aux_sym_arrow_function_token1] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_array] = ACTIONS(1098), + [anon_sym_unset] = ACTIONS(1098), + [aux_sym_echo_statement_token1] = ACTIONS(1098), + [anon_sym_declare] = ACTIONS(1098), + [aux_sym_declare_statement_token1] = ACTIONS(1098), + [sym_float] = ACTIONS(1098), + [aux_sym_try_statement_token1] = ACTIONS(1098), + [aux_sym_goto_statement_token1] = ACTIONS(1098), + [aux_sym_continue_statement_token1] = ACTIONS(1098), + [aux_sym_break_statement_token1] = ACTIONS(1098), + [sym_integer] = ACTIONS(1098), + [aux_sym_return_statement_token1] = ACTIONS(1098), + [aux_sym_throw_expression_token1] = ACTIONS(1098), + [aux_sym_while_statement_token1] = ACTIONS(1098), + [aux_sym_while_statement_token2] = ACTIONS(1098), + [aux_sym_do_statement_token1] = ACTIONS(1098), + [aux_sym_for_statement_token1] = ACTIONS(1098), + [aux_sym_for_statement_token2] = ACTIONS(1098), + [aux_sym_foreach_statement_token1] = ACTIONS(1098), + [aux_sym_foreach_statement_token2] = ACTIONS(1098), + [aux_sym_if_statement_token1] = ACTIONS(1098), + [aux_sym_if_statement_token2] = ACTIONS(1098), + [aux_sym_else_if_clause_token1] = ACTIONS(1098), + [aux_sym_else_clause_token1] = ACTIONS(1098), + [aux_sym_match_expression_token1] = ACTIONS(1098), + [aux_sym_match_default_expression_token1] = ACTIONS(1098), + [aux_sym_switch_statement_token1] = ACTIONS(1098), + [aux_sym_switch_block_token1] = ACTIONS(1098), + [aux_sym_case_statement_token1] = ACTIONS(1098), + [anon_sym_AT] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_clone] = ACTIONS(1098), + [anon_sym_print] = ACTIONS(1098), + [anon_sym_new] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [sym_shell_command_expression] = ACTIONS(1096), + [anon_sym_list] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_self] = ACTIONS(1098), + [anon_sym_parent] = ACTIONS(1098), + [anon_sym_POUND_LBRACK] = ACTIONS(1096), + [sym_string] = ACTIONS(1096), + [sym_boolean] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(1096), + [anon_sym_yield] = ACTIONS(1098), + [aux_sym_include_expression_token1] = ACTIONS(1098), + [aux_sym_include_once_expression_token1] = ACTIONS(1098), + [aux_sym_require_expression_token1] = ACTIONS(1098), + [aux_sym_require_once_expression_token1] = ACTIONS(1098), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1095), + [sym_heredoc] = ACTIONS(1096), }, [456] = { [sym_text_interpolation] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(951), - [sym_name] = ACTIONS(953), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(951), - [aux_sym_function_static_declaration_token1] = ACTIONS(953), - [aux_sym_global_declaration_token1] = ACTIONS(953), - [aux_sym_namespace_definition_token1] = ACTIONS(953), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(953), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(953), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(953), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [aux_sym_trait_declaration_token1] = ACTIONS(953), - [aux_sym_interface_declaration_token1] = ACTIONS(953), - [aux_sym_class_declaration_token1] = ACTIONS(953), - [aux_sym_class_modifier_token1] = ACTIONS(953), - [aux_sym_class_modifier_token2] = ACTIONS(953), - [aux_sym_visibility_modifier_token1] = ACTIONS(953), - [aux_sym_visibility_modifier_token2] = ACTIONS(953), - [aux_sym_visibility_modifier_token3] = ACTIONS(953), - [aux_sym_arrow_function_token1] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_array] = ACTIONS(953), - [anon_sym_unset] = ACTIONS(953), - [aux_sym_echo_statement_token1] = ACTIONS(953), - [anon_sym_declare] = ACTIONS(953), - [aux_sym_declare_statement_token1] = ACTIONS(953), - [sym_float] = ACTIONS(953), - [aux_sym_try_statement_token1] = ACTIONS(953), - [aux_sym_goto_statement_token1] = ACTIONS(953), - [aux_sym_continue_statement_token1] = ACTIONS(953), - [aux_sym_break_statement_token1] = ACTIONS(953), - [sym_integer] = ACTIONS(953), - [aux_sym_return_statement_token1] = ACTIONS(953), - [aux_sym_throw_expression_token1] = ACTIONS(953), - [aux_sym_while_statement_token1] = ACTIONS(953), - [aux_sym_while_statement_token2] = ACTIONS(953), - [aux_sym_do_statement_token1] = ACTIONS(953), - [aux_sym_for_statement_token1] = ACTIONS(953), - [aux_sym_for_statement_token2] = ACTIONS(953), - [aux_sym_foreach_statement_token1] = ACTIONS(953), - [aux_sym_foreach_statement_token2] = ACTIONS(953), - [aux_sym_if_statement_token1] = ACTIONS(953), - [aux_sym_if_statement_token2] = ACTIONS(953), - [aux_sym_else_if_clause_token1] = ACTIONS(953), - [aux_sym_else_clause_token1] = ACTIONS(953), - [aux_sym_match_expression_token1] = ACTIONS(953), - [aux_sym_match_default_expression_token1] = ACTIONS(953), - [aux_sym_switch_statement_token1] = ACTIONS(953), - [aux_sym_switch_block_token1] = ACTIONS(953), - [aux_sym_case_statement_token1] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_clone] = ACTIONS(953), - [anon_sym_print] = ACTIONS(953), - [anon_sym_new] = ACTIONS(953), - [anon_sym_PLUS_PLUS] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(951), - [sym_shell_command_expression] = ACTIONS(951), - [anon_sym_list] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_self] = ACTIONS(953), - [anon_sym_parent] = ACTIONS(953), - [anon_sym_POUND_LBRACK] = ACTIONS(951), - [sym_string] = ACTIONS(951), - [sym_boolean] = ACTIONS(953), - [sym_null] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_yield] = ACTIONS(953), - [aux_sym_include_expression_token1] = ACTIONS(953), - [aux_sym_include_once_expression_token1] = ACTIONS(953), - [aux_sym_require_expression_token1] = ACTIONS(953), - [aux_sym_require_once_expression_token1] = ACTIONS(953), + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_name] = ACTIONS(1102), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1100), + [aux_sym_function_static_declaration_token1] = ACTIONS(1102), + [aux_sym_global_declaration_token1] = ACTIONS(1102), + [aux_sym_namespace_definition_token1] = ACTIONS(1102), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1102), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1102), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1102), + [anon_sym_BSLASH] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [aux_sym_trait_declaration_token1] = ACTIONS(1102), + [aux_sym_interface_declaration_token1] = ACTIONS(1102), + [aux_sym_class_declaration_token1] = ACTIONS(1102), + [aux_sym_final_modifier_token1] = ACTIONS(1102), + [aux_sym_abstract_modifier_token1] = ACTIONS(1102), + [aux_sym_visibility_modifier_token1] = ACTIONS(1102), + [aux_sym_visibility_modifier_token2] = ACTIONS(1102), + [aux_sym_visibility_modifier_token3] = ACTIONS(1102), + [aux_sym_arrow_function_token1] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_array] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [aux_sym_echo_statement_token1] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1102), + [aux_sym_declare_statement_token1] = ACTIONS(1102), + [sym_float] = ACTIONS(1102), + [aux_sym_try_statement_token1] = ACTIONS(1102), + [aux_sym_goto_statement_token1] = ACTIONS(1102), + [aux_sym_continue_statement_token1] = ACTIONS(1102), + [aux_sym_break_statement_token1] = ACTIONS(1102), + [sym_integer] = ACTIONS(1102), + [aux_sym_return_statement_token1] = ACTIONS(1102), + [aux_sym_throw_expression_token1] = ACTIONS(1102), + [aux_sym_while_statement_token1] = ACTIONS(1102), + [aux_sym_while_statement_token2] = ACTIONS(1102), + [aux_sym_do_statement_token1] = ACTIONS(1102), + [aux_sym_for_statement_token1] = ACTIONS(1102), + [aux_sym_for_statement_token2] = ACTIONS(1102), + [aux_sym_foreach_statement_token1] = ACTIONS(1102), + [aux_sym_foreach_statement_token2] = ACTIONS(1102), + [aux_sym_if_statement_token1] = ACTIONS(1102), + [aux_sym_if_statement_token2] = ACTIONS(1102), + [aux_sym_else_if_clause_token1] = ACTIONS(1102), + [aux_sym_else_clause_token1] = ACTIONS(1102), + [aux_sym_match_expression_token1] = ACTIONS(1102), + [aux_sym_match_default_expression_token1] = ACTIONS(1102), + [aux_sym_switch_statement_token1] = ACTIONS(1102), + [aux_sym_switch_block_token1] = ACTIONS(1102), + [aux_sym_case_statement_token1] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_clone] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(1102), + [anon_sym_new] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [sym_shell_command_expression] = ACTIONS(1100), + [anon_sym_list] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_self] = ACTIONS(1102), + [anon_sym_parent] = ACTIONS(1102), + [anon_sym_POUND_LBRACK] = ACTIONS(1100), + [sym_string] = ACTIONS(1100), + [sym_boolean] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1100), + [anon_sym_yield] = ACTIONS(1102), + [aux_sym_include_expression_token1] = ACTIONS(1102), + [aux_sym_include_once_expression_token1] = ACTIONS(1102), + [aux_sym_require_expression_token1] = ACTIONS(1102), + [aux_sym_require_once_expression_token1] = ACTIONS(1102), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(951), + [sym_heredoc] = ACTIONS(1100), }, [457] = { [sym_text_interpolation] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(1099), - [sym_name] = ACTIONS(1101), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1099), - [aux_sym_function_static_declaration_token1] = ACTIONS(1101), - [aux_sym_global_declaration_token1] = ACTIONS(1101), - [aux_sym_namespace_definition_token1] = ACTIONS(1101), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1101), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1101), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1101), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1099), - [aux_sym_trait_declaration_token1] = ACTIONS(1101), - [aux_sym_interface_declaration_token1] = ACTIONS(1101), - [aux_sym_class_declaration_token1] = ACTIONS(1101), - [aux_sym_class_modifier_token1] = ACTIONS(1101), - [aux_sym_class_modifier_token2] = ACTIONS(1101), - [aux_sym_visibility_modifier_token1] = ACTIONS(1101), - [aux_sym_visibility_modifier_token2] = ACTIONS(1101), - [aux_sym_visibility_modifier_token3] = ACTIONS(1101), - [aux_sym_arrow_function_token1] = ACTIONS(1101), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_array] = ACTIONS(1101), - [anon_sym_unset] = ACTIONS(1101), - [aux_sym_echo_statement_token1] = ACTIONS(1101), - [anon_sym_declare] = ACTIONS(1101), - [aux_sym_declare_statement_token1] = ACTIONS(1101), - [sym_float] = ACTIONS(1101), - [aux_sym_try_statement_token1] = ACTIONS(1101), - [aux_sym_goto_statement_token1] = ACTIONS(1101), - [aux_sym_continue_statement_token1] = ACTIONS(1101), - [aux_sym_break_statement_token1] = ACTIONS(1101), - [sym_integer] = ACTIONS(1101), - [aux_sym_return_statement_token1] = ACTIONS(1101), - [aux_sym_throw_expression_token1] = ACTIONS(1101), - [aux_sym_while_statement_token1] = ACTIONS(1101), - [aux_sym_while_statement_token2] = ACTIONS(1101), - [aux_sym_do_statement_token1] = ACTIONS(1101), - [aux_sym_for_statement_token1] = ACTIONS(1101), - [aux_sym_for_statement_token2] = ACTIONS(1101), - [aux_sym_foreach_statement_token1] = ACTIONS(1101), - [aux_sym_foreach_statement_token2] = ACTIONS(1101), - [aux_sym_if_statement_token1] = ACTIONS(1101), - [aux_sym_if_statement_token2] = ACTIONS(1101), - [aux_sym_else_if_clause_token1] = ACTIONS(1101), - [aux_sym_else_clause_token1] = ACTIONS(1101), - [aux_sym_match_expression_token1] = ACTIONS(1101), - [aux_sym_match_default_expression_token1] = ACTIONS(1101), - [aux_sym_switch_statement_token1] = ACTIONS(1101), - [aux_sym_switch_block_token1] = ACTIONS(1101), - [aux_sym_case_statement_token1] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_clone] = ACTIONS(1101), - [anon_sym_print] = ACTIONS(1101), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [sym_shell_command_expression] = ACTIONS(1099), - [anon_sym_list] = ACTIONS(1101), - [anon_sym_LBRACK] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_POUND_LBRACK] = ACTIONS(1099), - [sym_string] = ACTIONS(1099), - [sym_boolean] = ACTIONS(1101), - [sym_null] = ACTIONS(1101), - [anon_sym_DOLLAR] = ACTIONS(1099), - [anon_sym_yield] = ACTIONS(1101), - [aux_sym_include_expression_token1] = ACTIONS(1101), - [aux_sym_include_once_expression_token1] = ACTIONS(1101), - [aux_sym_require_expression_token1] = ACTIONS(1101), - [aux_sym_require_once_expression_token1] = ACTIONS(1101), + [ts_builtin_sym_end] = ACTIONS(1104), + [sym_name] = ACTIONS(1106), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1104), + [aux_sym_function_static_declaration_token1] = ACTIONS(1106), + [aux_sym_global_declaration_token1] = ACTIONS(1106), + [aux_sym_namespace_definition_token1] = ACTIONS(1106), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1106), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1106), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1106), + [anon_sym_BSLASH] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [aux_sym_trait_declaration_token1] = ACTIONS(1106), + [aux_sym_interface_declaration_token1] = ACTIONS(1106), + [aux_sym_class_declaration_token1] = ACTIONS(1106), + [aux_sym_final_modifier_token1] = ACTIONS(1106), + [aux_sym_abstract_modifier_token1] = ACTIONS(1106), + [aux_sym_visibility_modifier_token1] = ACTIONS(1106), + [aux_sym_visibility_modifier_token2] = ACTIONS(1106), + [aux_sym_visibility_modifier_token3] = ACTIONS(1106), + [aux_sym_arrow_function_token1] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1104), + [anon_sym_array] = ACTIONS(1106), + [anon_sym_unset] = ACTIONS(1106), + [aux_sym_echo_statement_token1] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1106), + [aux_sym_declare_statement_token1] = ACTIONS(1106), + [sym_float] = ACTIONS(1106), + [aux_sym_try_statement_token1] = ACTIONS(1106), + [aux_sym_goto_statement_token1] = ACTIONS(1106), + [aux_sym_continue_statement_token1] = ACTIONS(1106), + [aux_sym_break_statement_token1] = ACTIONS(1106), + [sym_integer] = ACTIONS(1106), + [aux_sym_return_statement_token1] = ACTIONS(1106), + [aux_sym_throw_expression_token1] = ACTIONS(1106), + [aux_sym_while_statement_token1] = ACTIONS(1106), + [aux_sym_while_statement_token2] = ACTIONS(1106), + [aux_sym_do_statement_token1] = ACTIONS(1106), + [aux_sym_for_statement_token1] = ACTIONS(1106), + [aux_sym_for_statement_token2] = ACTIONS(1106), + [aux_sym_foreach_statement_token1] = ACTIONS(1106), + [aux_sym_foreach_statement_token2] = ACTIONS(1106), + [aux_sym_if_statement_token1] = ACTIONS(1106), + [aux_sym_if_statement_token2] = ACTIONS(1106), + [aux_sym_else_if_clause_token1] = ACTIONS(1106), + [aux_sym_else_clause_token1] = ACTIONS(1106), + [aux_sym_match_expression_token1] = ACTIONS(1106), + [aux_sym_match_default_expression_token1] = ACTIONS(1106), + [aux_sym_switch_statement_token1] = ACTIONS(1106), + [aux_sym_switch_block_token1] = ACTIONS(1106), + [aux_sym_case_statement_token1] = ACTIONS(1106), + [anon_sym_AT] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_clone] = ACTIONS(1106), + [anon_sym_print] = ACTIONS(1106), + [anon_sym_new] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1104), + [sym_shell_command_expression] = ACTIONS(1104), + [anon_sym_list] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_self] = ACTIONS(1106), + [anon_sym_parent] = ACTIONS(1106), + [anon_sym_POUND_LBRACK] = ACTIONS(1104), + [sym_string] = ACTIONS(1104), + [sym_boolean] = ACTIONS(1106), + [sym_null] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1104), + [anon_sym_yield] = ACTIONS(1106), + [aux_sym_include_expression_token1] = ACTIONS(1106), + [aux_sym_include_once_expression_token1] = ACTIONS(1106), + [aux_sym_require_expression_token1] = ACTIONS(1106), + [aux_sym_require_once_expression_token1] = ACTIONS(1106), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1099), + [sym_heredoc] = ACTIONS(1104), }, [458] = { [sym_text_interpolation] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(1103), - [sym_name] = ACTIONS(1105), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1103), - [aux_sym_function_static_declaration_token1] = ACTIONS(1105), - [aux_sym_global_declaration_token1] = ACTIONS(1105), - [aux_sym_namespace_definition_token1] = ACTIONS(1105), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1105), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1105), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1105), - [anon_sym_BSLASH] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [aux_sym_trait_declaration_token1] = ACTIONS(1105), - [aux_sym_interface_declaration_token1] = ACTIONS(1105), - [aux_sym_class_declaration_token1] = ACTIONS(1105), - [aux_sym_class_modifier_token1] = ACTIONS(1105), - [aux_sym_class_modifier_token2] = ACTIONS(1105), - [aux_sym_visibility_modifier_token1] = ACTIONS(1105), - [aux_sym_visibility_modifier_token2] = ACTIONS(1105), - [aux_sym_visibility_modifier_token3] = ACTIONS(1105), - [aux_sym_arrow_function_token1] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_array] = ACTIONS(1105), - [anon_sym_unset] = ACTIONS(1105), - [aux_sym_echo_statement_token1] = ACTIONS(1105), - [anon_sym_declare] = ACTIONS(1105), - [aux_sym_declare_statement_token1] = ACTIONS(1105), - [sym_float] = ACTIONS(1105), - [aux_sym_try_statement_token1] = ACTIONS(1105), - [aux_sym_goto_statement_token1] = ACTIONS(1105), - [aux_sym_continue_statement_token1] = ACTIONS(1105), - [aux_sym_break_statement_token1] = ACTIONS(1105), - [sym_integer] = ACTIONS(1105), - [aux_sym_return_statement_token1] = ACTIONS(1105), - [aux_sym_throw_expression_token1] = ACTIONS(1105), - [aux_sym_while_statement_token1] = ACTIONS(1105), - [aux_sym_while_statement_token2] = ACTIONS(1105), - [aux_sym_do_statement_token1] = ACTIONS(1105), - [aux_sym_for_statement_token1] = ACTIONS(1105), - [aux_sym_for_statement_token2] = ACTIONS(1105), - [aux_sym_foreach_statement_token1] = ACTIONS(1105), - [aux_sym_foreach_statement_token2] = ACTIONS(1105), - [aux_sym_if_statement_token1] = ACTIONS(1105), - [aux_sym_if_statement_token2] = ACTIONS(1105), - [aux_sym_else_if_clause_token1] = ACTIONS(1105), - [aux_sym_else_clause_token1] = ACTIONS(1105), - [aux_sym_match_expression_token1] = ACTIONS(1105), - [aux_sym_match_default_expression_token1] = ACTIONS(1105), - [aux_sym_switch_statement_token1] = ACTIONS(1105), - [aux_sym_switch_block_token1] = ACTIONS(1105), - [aux_sym_case_statement_token1] = ACTIONS(1105), - [anon_sym_AT] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_clone] = ACTIONS(1105), - [anon_sym_print] = ACTIONS(1105), - [anon_sym_new] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [sym_shell_command_expression] = ACTIONS(1103), - [anon_sym_list] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_self] = ACTIONS(1105), - [anon_sym_parent] = ACTIONS(1105), - [anon_sym_POUND_LBRACK] = ACTIONS(1103), - [sym_string] = ACTIONS(1103), - [sym_boolean] = ACTIONS(1105), - [sym_null] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(1105), - [aux_sym_include_expression_token1] = ACTIONS(1105), - [aux_sym_include_once_expression_token1] = ACTIONS(1105), - [aux_sym_require_expression_token1] = ACTIONS(1105), - [aux_sym_require_once_expression_token1] = ACTIONS(1105), + [ts_builtin_sym_end] = ACTIONS(1108), + [sym_name] = ACTIONS(1110), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1108), + [aux_sym_function_static_declaration_token1] = ACTIONS(1110), + [aux_sym_global_declaration_token1] = ACTIONS(1110), + [aux_sym_namespace_definition_token1] = ACTIONS(1110), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1110), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1110), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1110), + [anon_sym_BSLASH] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1108), + [aux_sym_trait_declaration_token1] = ACTIONS(1110), + [aux_sym_interface_declaration_token1] = ACTIONS(1110), + [aux_sym_class_declaration_token1] = ACTIONS(1110), + [aux_sym_final_modifier_token1] = ACTIONS(1110), + [aux_sym_abstract_modifier_token1] = ACTIONS(1110), + [aux_sym_visibility_modifier_token1] = ACTIONS(1110), + [aux_sym_visibility_modifier_token2] = ACTIONS(1110), + [aux_sym_visibility_modifier_token3] = ACTIONS(1110), + [aux_sym_arrow_function_token1] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1108), + [anon_sym_array] = ACTIONS(1110), + [anon_sym_unset] = ACTIONS(1110), + [aux_sym_echo_statement_token1] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [aux_sym_declare_statement_token1] = ACTIONS(1110), + [sym_float] = ACTIONS(1110), + [aux_sym_try_statement_token1] = ACTIONS(1110), + [aux_sym_goto_statement_token1] = ACTIONS(1110), + [aux_sym_continue_statement_token1] = ACTIONS(1110), + [aux_sym_break_statement_token1] = ACTIONS(1110), + [sym_integer] = ACTIONS(1110), + [aux_sym_return_statement_token1] = ACTIONS(1110), + [aux_sym_throw_expression_token1] = ACTIONS(1110), + [aux_sym_while_statement_token1] = ACTIONS(1110), + [aux_sym_while_statement_token2] = ACTIONS(1110), + [aux_sym_do_statement_token1] = ACTIONS(1110), + [aux_sym_for_statement_token1] = ACTIONS(1110), + [aux_sym_for_statement_token2] = ACTIONS(1110), + [aux_sym_foreach_statement_token1] = ACTIONS(1110), + [aux_sym_foreach_statement_token2] = ACTIONS(1110), + [aux_sym_if_statement_token1] = ACTIONS(1110), + [aux_sym_if_statement_token2] = ACTIONS(1110), + [aux_sym_else_if_clause_token1] = ACTIONS(1110), + [aux_sym_else_clause_token1] = ACTIONS(1110), + [aux_sym_match_expression_token1] = ACTIONS(1110), + [aux_sym_match_default_expression_token1] = ACTIONS(1110), + [aux_sym_switch_statement_token1] = ACTIONS(1110), + [aux_sym_switch_block_token1] = ACTIONS(1110), + [aux_sym_case_statement_token1] = ACTIONS(1110), + [anon_sym_AT] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_clone] = ACTIONS(1110), + [anon_sym_print] = ACTIONS(1110), + [anon_sym_new] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [sym_shell_command_expression] = ACTIONS(1108), + [anon_sym_list] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_self] = ACTIONS(1110), + [anon_sym_parent] = ACTIONS(1110), + [anon_sym_POUND_LBRACK] = ACTIONS(1108), + [sym_string] = ACTIONS(1108), + [sym_boolean] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), + [anon_sym_DOLLAR] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1110), + [aux_sym_include_expression_token1] = ACTIONS(1110), + [aux_sym_include_once_expression_token1] = ACTIONS(1110), + [aux_sym_require_expression_token1] = ACTIONS(1110), + [aux_sym_require_once_expression_token1] = ACTIONS(1110), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1103), + [sym_heredoc] = ACTIONS(1108), }, [459] = { [sym_text_interpolation] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_name] = ACTIONS(1109), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1107), - [aux_sym_function_static_declaration_token1] = ACTIONS(1109), - [aux_sym_global_declaration_token1] = ACTIONS(1109), - [aux_sym_namespace_definition_token1] = ACTIONS(1109), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1109), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1109), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1109), - [anon_sym_BSLASH] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1107), - [aux_sym_trait_declaration_token1] = ACTIONS(1109), - [aux_sym_interface_declaration_token1] = ACTIONS(1109), - [aux_sym_class_declaration_token1] = ACTIONS(1109), - [aux_sym_class_modifier_token1] = ACTIONS(1109), - [aux_sym_class_modifier_token2] = ACTIONS(1109), - [aux_sym_visibility_modifier_token1] = ACTIONS(1109), - [aux_sym_visibility_modifier_token2] = ACTIONS(1109), - [aux_sym_visibility_modifier_token3] = ACTIONS(1109), - [aux_sym_arrow_function_token1] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_array] = ACTIONS(1109), - [anon_sym_unset] = ACTIONS(1109), - [aux_sym_echo_statement_token1] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [aux_sym_declare_statement_token1] = ACTIONS(1109), - [sym_float] = ACTIONS(1109), - [aux_sym_try_statement_token1] = ACTIONS(1109), - [aux_sym_goto_statement_token1] = ACTIONS(1109), - [aux_sym_continue_statement_token1] = ACTIONS(1109), - [aux_sym_break_statement_token1] = ACTIONS(1109), - [sym_integer] = ACTIONS(1109), - [aux_sym_return_statement_token1] = ACTIONS(1109), - [aux_sym_throw_expression_token1] = ACTIONS(1109), - [aux_sym_while_statement_token1] = ACTIONS(1109), - [aux_sym_while_statement_token2] = ACTIONS(1109), - [aux_sym_do_statement_token1] = ACTIONS(1109), - [aux_sym_for_statement_token1] = ACTIONS(1109), - [aux_sym_for_statement_token2] = ACTIONS(1109), - [aux_sym_foreach_statement_token1] = ACTIONS(1109), - [aux_sym_foreach_statement_token2] = ACTIONS(1109), - [aux_sym_if_statement_token1] = ACTIONS(1109), - [aux_sym_if_statement_token2] = ACTIONS(1109), - [aux_sym_else_if_clause_token1] = ACTIONS(1109), - [aux_sym_else_clause_token1] = ACTIONS(1109), - [aux_sym_match_expression_token1] = ACTIONS(1109), - [aux_sym_match_default_expression_token1] = ACTIONS(1109), - [aux_sym_switch_statement_token1] = ACTIONS(1109), - [aux_sym_switch_block_token1] = ACTIONS(1109), - [aux_sym_case_statement_token1] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_clone] = ACTIONS(1109), - [anon_sym_print] = ACTIONS(1109), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [sym_shell_command_expression] = ACTIONS(1107), - [anon_sym_list] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1107), - [anon_sym_self] = ACTIONS(1109), - [anon_sym_parent] = ACTIONS(1109), - [anon_sym_POUND_LBRACK] = ACTIONS(1107), - [sym_string] = ACTIONS(1107), - [sym_boolean] = ACTIONS(1109), - [sym_null] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1107), - [anon_sym_yield] = ACTIONS(1109), - [aux_sym_include_expression_token1] = ACTIONS(1109), - [aux_sym_include_once_expression_token1] = ACTIONS(1109), - [aux_sym_require_expression_token1] = ACTIONS(1109), - [aux_sym_require_once_expression_token1] = ACTIONS(1109), + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_name] = ACTIONS(1114), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1112), + [aux_sym_function_static_declaration_token1] = ACTIONS(1114), + [aux_sym_global_declaration_token1] = ACTIONS(1114), + [aux_sym_namespace_definition_token1] = ACTIONS(1114), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1114), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1114), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1114), + [anon_sym_BSLASH] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [aux_sym_trait_declaration_token1] = ACTIONS(1114), + [aux_sym_interface_declaration_token1] = ACTIONS(1114), + [aux_sym_class_declaration_token1] = ACTIONS(1114), + [aux_sym_final_modifier_token1] = ACTIONS(1114), + [aux_sym_abstract_modifier_token1] = ACTIONS(1114), + [aux_sym_visibility_modifier_token1] = ACTIONS(1114), + [aux_sym_visibility_modifier_token2] = ACTIONS(1114), + [aux_sym_visibility_modifier_token3] = ACTIONS(1114), + [aux_sym_arrow_function_token1] = ACTIONS(1114), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_array] = ACTIONS(1114), + [anon_sym_unset] = ACTIONS(1114), + [aux_sym_echo_statement_token1] = ACTIONS(1114), + [anon_sym_declare] = ACTIONS(1114), + [aux_sym_declare_statement_token1] = ACTIONS(1114), + [sym_float] = ACTIONS(1114), + [aux_sym_try_statement_token1] = ACTIONS(1114), + [aux_sym_goto_statement_token1] = ACTIONS(1114), + [aux_sym_continue_statement_token1] = ACTIONS(1114), + [aux_sym_break_statement_token1] = ACTIONS(1114), + [sym_integer] = ACTIONS(1114), + [aux_sym_return_statement_token1] = ACTIONS(1114), + [aux_sym_throw_expression_token1] = ACTIONS(1114), + [aux_sym_while_statement_token1] = ACTIONS(1114), + [aux_sym_while_statement_token2] = ACTIONS(1114), + [aux_sym_do_statement_token1] = ACTIONS(1114), + [aux_sym_for_statement_token1] = ACTIONS(1114), + [aux_sym_for_statement_token2] = ACTIONS(1114), + [aux_sym_foreach_statement_token1] = ACTIONS(1114), + [aux_sym_foreach_statement_token2] = ACTIONS(1114), + [aux_sym_if_statement_token1] = ACTIONS(1114), + [aux_sym_if_statement_token2] = ACTIONS(1114), + [aux_sym_else_if_clause_token1] = ACTIONS(1114), + [aux_sym_else_clause_token1] = ACTIONS(1114), + [aux_sym_match_expression_token1] = ACTIONS(1114), + [aux_sym_match_default_expression_token1] = ACTIONS(1114), + [aux_sym_switch_statement_token1] = ACTIONS(1114), + [aux_sym_switch_block_token1] = ACTIONS(1114), + [aux_sym_case_statement_token1] = ACTIONS(1114), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_clone] = ACTIONS(1114), + [anon_sym_print] = ACTIONS(1114), + [anon_sym_new] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [sym_shell_command_expression] = ACTIONS(1112), + [anon_sym_list] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1112), + [anon_sym_self] = ACTIONS(1114), + [anon_sym_parent] = ACTIONS(1114), + [anon_sym_POUND_LBRACK] = ACTIONS(1112), + [sym_string] = ACTIONS(1112), + [sym_boolean] = ACTIONS(1114), + [sym_null] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(1114), + [aux_sym_include_expression_token1] = ACTIONS(1114), + [aux_sym_include_once_expression_token1] = ACTIONS(1114), + [aux_sym_require_expression_token1] = ACTIONS(1114), + [aux_sym_require_once_expression_token1] = ACTIONS(1114), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1107), + [sym_heredoc] = ACTIONS(1112), }, [460] = { [sym_text_interpolation] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_name] = ACTIONS(1113), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1111), - [aux_sym_function_static_declaration_token1] = ACTIONS(1113), - [aux_sym_global_declaration_token1] = ACTIONS(1113), - [aux_sym_namespace_definition_token1] = ACTIONS(1113), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1113), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1113), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1113), - [anon_sym_BSLASH] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [aux_sym_trait_declaration_token1] = ACTIONS(1113), - [aux_sym_interface_declaration_token1] = ACTIONS(1113), - [aux_sym_class_declaration_token1] = ACTIONS(1113), - [aux_sym_class_modifier_token1] = ACTIONS(1113), - [aux_sym_class_modifier_token2] = ACTIONS(1113), - [aux_sym_visibility_modifier_token1] = ACTIONS(1113), - [aux_sym_visibility_modifier_token2] = ACTIONS(1113), - [aux_sym_visibility_modifier_token3] = ACTIONS(1113), - [aux_sym_arrow_function_token1] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_array] = ACTIONS(1113), - [anon_sym_unset] = ACTIONS(1113), - [aux_sym_echo_statement_token1] = ACTIONS(1113), - [anon_sym_declare] = ACTIONS(1113), - [aux_sym_declare_statement_token1] = ACTIONS(1113), - [sym_float] = ACTIONS(1113), - [aux_sym_try_statement_token1] = ACTIONS(1113), - [aux_sym_goto_statement_token1] = ACTIONS(1113), - [aux_sym_continue_statement_token1] = ACTIONS(1113), - [aux_sym_break_statement_token1] = ACTIONS(1113), - [sym_integer] = ACTIONS(1113), - [aux_sym_return_statement_token1] = ACTIONS(1113), - [aux_sym_throw_expression_token1] = ACTIONS(1113), - [aux_sym_while_statement_token1] = ACTIONS(1113), - [aux_sym_while_statement_token2] = ACTIONS(1113), - [aux_sym_do_statement_token1] = ACTIONS(1113), - [aux_sym_for_statement_token1] = ACTIONS(1113), - [aux_sym_for_statement_token2] = ACTIONS(1113), - [aux_sym_foreach_statement_token1] = ACTIONS(1113), - [aux_sym_foreach_statement_token2] = ACTIONS(1113), - [aux_sym_if_statement_token1] = ACTIONS(1113), - [aux_sym_if_statement_token2] = ACTIONS(1113), - [aux_sym_else_if_clause_token1] = ACTIONS(1113), - [aux_sym_else_clause_token1] = ACTIONS(1113), - [aux_sym_match_expression_token1] = ACTIONS(1113), - [aux_sym_match_default_expression_token1] = ACTIONS(1113), - [aux_sym_switch_statement_token1] = ACTIONS(1113), - [aux_sym_switch_block_token1] = ACTIONS(1113), - [aux_sym_case_statement_token1] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_clone] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1113), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [sym_shell_command_expression] = ACTIONS(1111), - [anon_sym_list] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_self] = ACTIONS(1113), - [anon_sym_parent] = ACTIONS(1113), - [anon_sym_POUND_LBRACK] = ACTIONS(1111), - [sym_string] = ACTIONS(1111), - [sym_boolean] = ACTIONS(1113), - [sym_null] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1111), - [anon_sym_yield] = ACTIONS(1113), - [aux_sym_include_expression_token1] = ACTIONS(1113), - [aux_sym_include_once_expression_token1] = ACTIONS(1113), - [aux_sym_require_expression_token1] = ACTIONS(1113), - [aux_sym_require_once_expression_token1] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_name] = ACTIONS(1118), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1116), + [aux_sym_function_static_declaration_token1] = ACTIONS(1118), + [aux_sym_global_declaration_token1] = ACTIONS(1118), + [aux_sym_namespace_definition_token1] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1118), + [anon_sym_BSLASH] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [aux_sym_trait_declaration_token1] = ACTIONS(1118), + [aux_sym_interface_declaration_token1] = ACTIONS(1118), + [aux_sym_class_declaration_token1] = ACTIONS(1118), + [aux_sym_final_modifier_token1] = ACTIONS(1118), + [aux_sym_abstract_modifier_token1] = ACTIONS(1118), + [aux_sym_visibility_modifier_token1] = ACTIONS(1118), + [aux_sym_visibility_modifier_token2] = ACTIONS(1118), + [aux_sym_visibility_modifier_token3] = ACTIONS(1118), + [aux_sym_arrow_function_token1] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_array] = ACTIONS(1118), + [anon_sym_unset] = ACTIONS(1118), + [aux_sym_echo_statement_token1] = ACTIONS(1118), + [anon_sym_declare] = ACTIONS(1118), + [aux_sym_declare_statement_token1] = ACTIONS(1118), + [sym_float] = ACTIONS(1118), + [aux_sym_try_statement_token1] = ACTIONS(1118), + [aux_sym_goto_statement_token1] = ACTIONS(1118), + [aux_sym_continue_statement_token1] = ACTIONS(1118), + [aux_sym_break_statement_token1] = ACTIONS(1118), + [sym_integer] = ACTIONS(1118), + [aux_sym_return_statement_token1] = ACTIONS(1118), + [aux_sym_throw_expression_token1] = ACTIONS(1118), + [aux_sym_while_statement_token1] = ACTIONS(1118), + [aux_sym_while_statement_token2] = ACTIONS(1118), + [aux_sym_do_statement_token1] = ACTIONS(1118), + [aux_sym_for_statement_token1] = ACTIONS(1118), + [aux_sym_for_statement_token2] = ACTIONS(1118), + [aux_sym_foreach_statement_token1] = ACTIONS(1118), + [aux_sym_foreach_statement_token2] = ACTIONS(1118), + [aux_sym_if_statement_token1] = ACTIONS(1118), + [aux_sym_if_statement_token2] = ACTIONS(1118), + [aux_sym_else_if_clause_token1] = ACTIONS(1118), + [aux_sym_else_clause_token1] = ACTIONS(1118), + [aux_sym_match_expression_token1] = ACTIONS(1118), + [aux_sym_match_default_expression_token1] = ACTIONS(1118), + [aux_sym_switch_statement_token1] = ACTIONS(1118), + [aux_sym_switch_block_token1] = ACTIONS(1118), + [aux_sym_case_statement_token1] = ACTIONS(1118), + [anon_sym_AT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_clone] = ACTIONS(1118), + [anon_sym_print] = ACTIONS(1118), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [sym_shell_command_expression] = ACTIONS(1116), + [anon_sym_list] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_self] = ACTIONS(1118), + [anon_sym_parent] = ACTIONS(1118), + [anon_sym_POUND_LBRACK] = ACTIONS(1116), + [sym_string] = ACTIONS(1116), + [sym_boolean] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), + [anon_sym_DOLLAR] = ACTIONS(1116), + [anon_sym_yield] = ACTIONS(1118), + [aux_sym_include_expression_token1] = ACTIONS(1118), + [aux_sym_include_once_expression_token1] = ACTIONS(1118), + [aux_sym_require_expression_token1] = ACTIONS(1118), + [aux_sym_require_once_expression_token1] = ACTIONS(1118), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1111), + [sym_heredoc] = ACTIONS(1116), }, [461] = { [sym_text_interpolation] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_name] = ACTIONS(1117), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1115), - [aux_sym_function_static_declaration_token1] = ACTIONS(1117), - [aux_sym_global_declaration_token1] = ACTIONS(1117), - [aux_sym_namespace_definition_token1] = ACTIONS(1117), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1117), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1117), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1117), - [anon_sym_BSLASH] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [aux_sym_trait_declaration_token1] = ACTIONS(1117), - [aux_sym_interface_declaration_token1] = ACTIONS(1117), - [aux_sym_class_declaration_token1] = ACTIONS(1117), - [aux_sym_class_modifier_token1] = ACTIONS(1117), - [aux_sym_class_modifier_token2] = ACTIONS(1117), - [aux_sym_visibility_modifier_token1] = ACTIONS(1117), - [aux_sym_visibility_modifier_token2] = ACTIONS(1117), - [aux_sym_visibility_modifier_token3] = ACTIONS(1117), - [aux_sym_arrow_function_token1] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_array] = ACTIONS(1117), - [anon_sym_unset] = ACTIONS(1117), - [aux_sym_echo_statement_token1] = ACTIONS(1117), - [anon_sym_declare] = ACTIONS(1117), - [aux_sym_declare_statement_token1] = ACTIONS(1117), - [sym_float] = ACTIONS(1117), - [aux_sym_try_statement_token1] = ACTIONS(1117), - [aux_sym_goto_statement_token1] = ACTIONS(1117), - [aux_sym_continue_statement_token1] = ACTIONS(1117), - [aux_sym_break_statement_token1] = ACTIONS(1117), - [sym_integer] = ACTIONS(1117), - [aux_sym_return_statement_token1] = ACTIONS(1117), - [aux_sym_throw_expression_token1] = ACTIONS(1117), - [aux_sym_while_statement_token1] = ACTIONS(1117), - [aux_sym_while_statement_token2] = ACTIONS(1117), - [aux_sym_do_statement_token1] = ACTIONS(1117), - [aux_sym_for_statement_token1] = ACTIONS(1117), - [aux_sym_for_statement_token2] = ACTIONS(1117), - [aux_sym_foreach_statement_token1] = ACTIONS(1117), - [aux_sym_foreach_statement_token2] = ACTIONS(1117), - [aux_sym_if_statement_token1] = ACTIONS(1117), - [aux_sym_if_statement_token2] = ACTIONS(1117), - [aux_sym_else_if_clause_token1] = ACTIONS(1117), - [aux_sym_else_clause_token1] = ACTIONS(1117), - [aux_sym_match_expression_token1] = ACTIONS(1117), - [aux_sym_match_default_expression_token1] = ACTIONS(1117), - [aux_sym_switch_statement_token1] = ACTIONS(1117), - [aux_sym_switch_block_token1] = ACTIONS(1117), - [aux_sym_case_statement_token1] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1115), - [anon_sym_BANG] = ACTIONS(1115), - [anon_sym_clone] = ACTIONS(1117), - [anon_sym_print] = ACTIONS(1117), - [anon_sym_new] = ACTIONS(1117), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_DASH_DASH] = ACTIONS(1115), - [sym_shell_command_expression] = ACTIONS(1115), - [anon_sym_list] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_self] = ACTIONS(1117), - [anon_sym_parent] = ACTIONS(1117), - [anon_sym_POUND_LBRACK] = ACTIONS(1115), - [sym_string] = ACTIONS(1115), - [sym_boolean] = ACTIONS(1117), - [sym_null] = ACTIONS(1117), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_yield] = ACTIONS(1117), - [aux_sym_include_expression_token1] = ACTIONS(1117), - [aux_sym_include_once_expression_token1] = ACTIONS(1117), - [aux_sym_require_expression_token1] = ACTIONS(1117), - [aux_sym_require_once_expression_token1] = ACTIONS(1117), + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_name] = ACTIONS(1118), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1116), + [aux_sym_function_static_declaration_token1] = ACTIONS(1118), + [aux_sym_global_declaration_token1] = ACTIONS(1118), + [aux_sym_namespace_definition_token1] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1118), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1118), + [anon_sym_BSLASH] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [aux_sym_trait_declaration_token1] = ACTIONS(1118), + [aux_sym_interface_declaration_token1] = ACTIONS(1118), + [aux_sym_class_declaration_token1] = ACTIONS(1118), + [aux_sym_final_modifier_token1] = ACTIONS(1118), + [aux_sym_abstract_modifier_token1] = ACTIONS(1118), + [aux_sym_visibility_modifier_token1] = ACTIONS(1118), + [aux_sym_visibility_modifier_token2] = ACTIONS(1118), + [aux_sym_visibility_modifier_token3] = ACTIONS(1118), + [aux_sym_arrow_function_token1] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_array] = ACTIONS(1118), + [anon_sym_unset] = ACTIONS(1118), + [aux_sym_echo_statement_token1] = ACTIONS(1118), + [anon_sym_declare] = ACTIONS(1118), + [aux_sym_declare_statement_token1] = ACTIONS(1118), + [sym_float] = ACTIONS(1118), + [aux_sym_try_statement_token1] = ACTIONS(1118), + [aux_sym_goto_statement_token1] = ACTIONS(1118), + [aux_sym_continue_statement_token1] = ACTIONS(1118), + [aux_sym_break_statement_token1] = ACTIONS(1118), + [sym_integer] = ACTIONS(1118), + [aux_sym_return_statement_token1] = ACTIONS(1118), + [aux_sym_throw_expression_token1] = ACTIONS(1118), + [aux_sym_while_statement_token1] = ACTIONS(1118), + [aux_sym_while_statement_token2] = ACTIONS(1118), + [aux_sym_do_statement_token1] = ACTIONS(1118), + [aux_sym_for_statement_token1] = ACTIONS(1118), + [aux_sym_for_statement_token2] = ACTIONS(1118), + [aux_sym_foreach_statement_token1] = ACTIONS(1118), + [aux_sym_foreach_statement_token2] = ACTIONS(1118), + [aux_sym_if_statement_token1] = ACTIONS(1118), + [aux_sym_if_statement_token2] = ACTIONS(1118), + [aux_sym_else_if_clause_token1] = ACTIONS(1118), + [aux_sym_else_clause_token1] = ACTIONS(1118), + [aux_sym_match_expression_token1] = ACTIONS(1118), + [aux_sym_match_default_expression_token1] = ACTIONS(1118), + [aux_sym_switch_statement_token1] = ACTIONS(1118), + [aux_sym_switch_block_token1] = ACTIONS(1118), + [aux_sym_case_statement_token1] = ACTIONS(1118), + [anon_sym_AT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_clone] = ACTIONS(1118), + [anon_sym_print] = ACTIONS(1118), + [anon_sym_new] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1116), + [sym_shell_command_expression] = ACTIONS(1116), + [anon_sym_list] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_self] = ACTIONS(1118), + [anon_sym_parent] = ACTIONS(1118), + [anon_sym_POUND_LBRACK] = ACTIONS(1116), + [sym_string] = ACTIONS(1116), + [sym_boolean] = ACTIONS(1118), + [sym_null] = ACTIONS(1118), + [anon_sym_DOLLAR] = ACTIONS(1116), + [anon_sym_yield] = ACTIONS(1118), + [aux_sym_include_expression_token1] = ACTIONS(1118), + [aux_sym_include_once_expression_token1] = ACTIONS(1118), + [aux_sym_require_expression_token1] = ACTIONS(1118), + [aux_sym_require_once_expression_token1] = ACTIONS(1118), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1115), + [sym_heredoc] = ACTIONS(1116), }, [462] = { [sym_text_interpolation] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_name] = ACTIONS(1121), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1119), - [aux_sym_function_static_declaration_token1] = ACTIONS(1121), - [aux_sym_global_declaration_token1] = ACTIONS(1121), - [aux_sym_namespace_definition_token1] = ACTIONS(1121), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1121), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1121), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1119), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [aux_sym_trait_declaration_token1] = ACTIONS(1121), - [aux_sym_interface_declaration_token1] = ACTIONS(1121), - [aux_sym_class_declaration_token1] = ACTIONS(1121), - [aux_sym_class_modifier_token1] = ACTIONS(1121), - [aux_sym_class_modifier_token2] = ACTIONS(1121), - [aux_sym_visibility_modifier_token1] = ACTIONS(1121), - [aux_sym_visibility_modifier_token2] = ACTIONS(1121), - [aux_sym_visibility_modifier_token3] = ACTIONS(1121), - [aux_sym_arrow_function_token1] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_array] = ACTIONS(1121), - [anon_sym_unset] = ACTIONS(1121), - [aux_sym_echo_statement_token1] = ACTIONS(1121), - [anon_sym_declare] = ACTIONS(1121), - [aux_sym_declare_statement_token1] = ACTIONS(1121), - [sym_float] = ACTIONS(1121), - [aux_sym_try_statement_token1] = ACTIONS(1121), - [aux_sym_goto_statement_token1] = ACTIONS(1121), - [aux_sym_continue_statement_token1] = ACTIONS(1121), - [aux_sym_break_statement_token1] = ACTIONS(1121), - [sym_integer] = ACTIONS(1121), - [aux_sym_return_statement_token1] = ACTIONS(1121), - [aux_sym_throw_expression_token1] = ACTIONS(1121), - [aux_sym_while_statement_token1] = ACTIONS(1121), - [aux_sym_while_statement_token2] = ACTIONS(1121), - [aux_sym_do_statement_token1] = ACTIONS(1121), - [aux_sym_for_statement_token1] = ACTIONS(1121), - [aux_sym_for_statement_token2] = ACTIONS(1121), - [aux_sym_foreach_statement_token1] = ACTIONS(1121), - [aux_sym_foreach_statement_token2] = ACTIONS(1121), - [aux_sym_if_statement_token1] = ACTIONS(1121), - [aux_sym_if_statement_token2] = ACTIONS(1121), - [aux_sym_else_if_clause_token1] = ACTIONS(1121), - [aux_sym_else_clause_token1] = ACTIONS(1121), - [aux_sym_match_expression_token1] = ACTIONS(1121), - [aux_sym_match_default_expression_token1] = ACTIONS(1121), - [aux_sym_switch_statement_token1] = ACTIONS(1121), - [aux_sym_switch_block_token1] = ACTIONS(1121), - [aux_sym_case_statement_token1] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_clone] = ACTIONS(1121), - [anon_sym_print] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [sym_shell_command_expression] = ACTIONS(1119), - [anon_sym_list] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1119), - [anon_sym_self] = ACTIONS(1121), - [anon_sym_parent] = ACTIONS(1121), - [anon_sym_POUND_LBRACK] = ACTIONS(1119), - [sym_string] = ACTIONS(1119), - [sym_boolean] = ACTIONS(1121), - [sym_null] = ACTIONS(1121), - [anon_sym_DOLLAR] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [aux_sym_include_expression_token1] = ACTIONS(1121), - [aux_sym_include_once_expression_token1] = ACTIONS(1121), - [aux_sym_require_expression_token1] = ACTIONS(1121), - [aux_sym_require_once_expression_token1] = ACTIONS(1121), + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_name] = ACTIONS(1122), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1120), + [aux_sym_function_static_declaration_token1] = ACTIONS(1122), + [aux_sym_global_declaration_token1] = ACTIONS(1122), + [aux_sym_namespace_definition_token1] = ACTIONS(1122), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1122), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1122), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1122), + [anon_sym_BSLASH] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [aux_sym_trait_declaration_token1] = ACTIONS(1122), + [aux_sym_interface_declaration_token1] = ACTIONS(1122), + [aux_sym_class_declaration_token1] = ACTIONS(1122), + [aux_sym_final_modifier_token1] = ACTIONS(1122), + [aux_sym_abstract_modifier_token1] = ACTIONS(1122), + [aux_sym_visibility_modifier_token1] = ACTIONS(1122), + [aux_sym_visibility_modifier_token2] = ACTIONS(1122), + [aux_sym_visibility_modifier_token3] = ACTIONS(1122), + [aux_sym_arrow_function_token1] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_array] = ACTIONS(1122), + [anon_sym_unset] = ACTIONS(1122), + [aux_sym_echo_statement_token1] = ACTIONS(1122), + [anon_sym_declare] = ACTIONS(1122), + [aux_sym_declare_statement_token1] = ACTIONS(1122), + [sym_float] = ACTIONS(1122), + [aux_sym_try_statement_token1] = ACTIONS(1122), + [aux_sym_goto_statement_token1] = ACTIONS(1122), + [aux_sym_continue_statement_token1] = ACTIONS(1122), + [aux_sym_break_statement_token1] = ACTIONS(1122), + [sym_integer] = ACTIONS(1122), + [aux_sym_return_statement_token1] = ACTIONS(1122), + [aux_sym_throw_expression_token1] = ACTIONS(1122), + [aux_sym_while_statement_token1] = ACTIONS(1122), + [aux_sym_while_statement_token2] = ACTIONS(1122), + [aux_sym_do_statement_token1] = ACTIONS(1122), + [aux_sym_for_statement_token1] = ACTIONS(1122), + [aux_sym_for_statement_token2] = ACTIONS(1122), + [aux_sym_foreach_statement_token1] = ACTIONS(1122), + [aux_sym_foreach_statement_token2] = ACTIONS(1122), + [aux_sym_if_statement_token1] = ACTIONS(1122), + [aux_sym_if_statement_token2] = ACTIONS(1122), + [aux_sym_else_if_clause_token1] = ACTIONS(1122), + [aux_sym_else_clause_token1] = ACTIONS(1122), + [aux_sym_match_expression_token1] = ACTIONS(1122), + [aux_sym_match_default_expression_token1] = ACTIONS(1122), + [aux_sym_switch_statement_token1] = ACTIONS(1122), + [aux_sym_switch_block_token1] = ACTIONS(1122), + [aux_sym_case_statement_token1] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_clone] = ACTIONS(1122), + [anon_sym_print] = ACTIONS(1122), + [anon_sym_new] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [sym_shell_command_expression] = ACTIONS(1120), + [anon_sym_list] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_self] = ACTIONS(1122), + [anon_sym_parent] = ACTIONS(1122), + [anon_sym_POUND_LBRACK] = ACTIONS(1120), + [sym_string] = ACTIONS(1120), + [sym_boolean] = ACTIONS(1122), + [sym_null] = ACTIONS(1122), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_yield] = ACTIONS(1122), + [aux_sym_include_expression_token1] = ACTIONS(1122), + [aux_sym_include_once_expression_token1] = ACTIONS(1122), + [aux_sym_require_expression_token1] = ACTIONS(1122), + [aux_sym_require_once_expression_token1] = ACTIONS(1122), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1119), + [sym_heredoc] = ACTIONS(1120), }, [463] = { [sym_text_interpolation] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(1123), - [sym_name] = ACTIONS(1125), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1123), - [aux_sym_function_static_declaration_token1] = ACTIONS(1125), - [aux_sym_global_declaration_token1] = ACTIONS(1125), - [aux_sym_namespace_definition_token1] = ACTIONS(1125), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1125), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1125), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1125), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [aux_sym_trait_declaration_token1] = ACTIONS(1125), - [aux_sym_interface_declaration_token1] = ACTIONS(1125), - [aux_sym_class_declaration_token1] = ACTIONS(1125), - [aux_sym_class_modifier_token1] = ACTIONS(1125), - [aux_sym_class_modifier_token2] = ACTIONS(1125), - [aux_sym_visibility_modifier_token1] = ACTIONS(1125), - [aux_sym_visibility_modifier_token2] = ACTIONS(1125), - [aux_sym_visibility_modifier_token3] = ACTIONS(1125), - [aux_sym_arrow_function_token1] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1123), - [anon_sym_array] = ACTIONS(1125), - [anon_sym_unset] = ACTIONS(1125), - [aux_sym_echo_statement_token1] = ACTIONS(1125), - [anon_sym_declare] = ACTIONS(1125), - [aux_sym_declare_statement_token1] = ACTIONS(1125), - [sym_float] = ACTIONS(1125), - [aux_sym_try_statement_token1] = ACTIONS(1125), - [aux_sym_goto_statement_token1] = ACTIONS(1125), - [aux_sym_continue_statement_token1] = ACTIONS(1125), - [aux_sym_break_statement_token1] = ACTIONS(1125), - [sym_integer] = ACTIONS(1125), - [aux_sym_return_statement_token1] = ACTIONS(1125), - [aux_sym_throw_expression_token1] = ACTIONS(1125), - [aux_sym_while_statement_token1] = ACTIONS(1125), - [aux_sym_while_statement_token2] = ACTIONS(1125), - [aux_sym_do_statement_token1] = ACTIONS(1125), - [aux_sym_for_statement_token1] = ACTIONS(1125), - [aux_sym_for_statement_token2] = ACTIONS(1125), - [aux_sym_foreach_statement_token1] = ACTIONS(1125), - [aux_sym_foreach_statement_token2] = ACTIONS(1125), - [aux_sym_if_statement_token1] = ACTIONS(1125), - [aux_sym_if_statement_token2] = ACTIONS(1125), - [aux_sym_else_if_clause_token1] = ACTIONS(1125), - [aux_sym_else_clause_token1] = ACTIONS(1125), - [aux_sym_match_expression_token1] = ACTIONS(1125), - [aux_sym_match_default_expression_token1] = ACTIONS(1125), - [aux_sym_switch_statement_token1] = ACTIONS(1125), - [aux_sym_switch_block_token1] = ACTIONS(1125), - [aux_sym_case_statement_token1] = ACTIONS(1125), - [anon_sym_AT] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_clone] = ACTIONS(1125), - [anon_sym_print] = ACTIONS(1125), - [anon_sym_new] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [sym_shell_command_expression] = ACTIONS(1123), - [anon_sym_list] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_POUND_LBRACK] = ACTIONS(1123), - [sym_string] = ACTIONS(1123), - [sym_boolean] = ACTIONS(1125), - [sym_null] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1123), - [anon_sym_yield] = ACTIONS(1125), - [aux_sym_include_expression_token1] = ACTIONS(1125), - [aux_sym_include_once_expression_token1] = ACTIONS(1125), - [aux_sym_require_expression_token1] = ACTIONS(1125), - [aux_sym_require_once_expression_token1] = ACTIONS(1125), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_name] = ACTIONS(1126), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1124), + [aux_sym_function_static_declaration_token1] = ACTIONS(1126), + [aux_sym_global_declaration_token1] = ACTIONS(1126), + [aux_sym_namespace_definition_token1] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1126), + [anon_sym_BSLASH] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [aux_sym_trait_declaration_token1] = ACTIONS(1126), + [aux_sym_interface_declaration_token1] = ACTIONS(1126), + [aux_sym_class_declaration_token1] = ACTIONS(1126), + [aux_sym_final_modifier_token1] = ACTIONS(1126), + [aux_sym_abstract_modifier_token1] = ACTIONS(1126), + [aux_sym_visibility_modifier_token1] = ACTIONS(1126), + [aux_sym_visibility_modifier_token2] = ACTIONS(1126), + [aux_sym_visibility_modifier_token3] = ACTIONS(1126), + [aux_sym_arrow_function_token1] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_array] = ACTIONS(1126), + [anon_sym_unset] = ACTIONS(1126), + [aux_sym_echo_statement_token1] = ACTIONS(1126), + [anon_sym_declare] = ACTIONS(1126), + [aux_sym_declare_statement_token1] = ACTIONS(1126), + [sym_float] = ACTIONS(1126), + [aux_sym_try_statement_token1] = ACTIONS(1126), + [aux_sym_goto_statement_token1] = ACTIONS(1126), + [aux_sym_continue_statement_token1] = ACTIONS(1126), + [aux_sym_break_statement_token1] = ACTIONS(1126), + [sym_integer] = ACTIONS(1126), + [aux_sym_return_statement_token1] = ACTIONS(1126), + [aux_sym_throw_expression_token1] = ACTIONS(1126), + [aux_sym_while_statement_token1] = ACTIONS(1126), + [aux_sym_while_statement_token2] = ACTIONS(1126), + [aux_sym_do_statement_token1] = ACTIONS(1126), + [aux_sym_for_statement_token1] = ACTIONS(1126), + [aux_sym_for_statement_token2] = ACTIONS(1126), + [aux_sym_foreach_statement_token1] = ACTIONS(1126), + [aux_sym_foreach_statement_token2] = ACTIONS(1126), + [aux_sym_if_statement_token1] = ACTIONS(1126), + [aux_sym_if_statement_token2] = ACTIONS(1126), + [aux_sym_else_if_clause_token1] = ACTIONS(1126), + [aux_sym_else_clause_token1] = ACTIONS(1126), + [aux_sym_match_expression_token1] = ACTIONS(1126), + [aux_sym_match_default_expression_token1] = ACTIONS(1126), + [aux_sym_switch_statement_token1] = ACTIONS(1126), + [aux_sym_switch_block_token1] = ACTIONS(1126), + [aux_sym_case_statement_token1] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_clone] = ACTIONS(1126), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_new] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [sym_shell_command_expression] = ACTIONS(1124), + [anon_sym_list] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_self] = ACTIONS(1126), + [anon_sym_parent] = ACTIONS(1126), + [anon_sym_POUND_LBRACK] = ACTIONS(1124), + [sym_string] = ACTIONS(1124), + [sym_boolean] = ACTIONS(1126), + [sym_null] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [aux_sym_include_expression_token1] = ACTIONS(1126), + [aux_sym_include_once_expression_token1] = ACTIONS(1126), + [aux_sym_require_expression_token1] = ACTIONS(1126), + [aux_sym_require_once_expression_token1] = ACTIONS(1126), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1123), + [sym_heredoc] = ACTIONS(1124), }, [464] = { [sym_text_interpolation] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(1123), - [sym_name] = ACTIONS(1125), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1123), - [aux_sym_function_static_declaration_token1] = ACTIONS(1125), - [aux_sym_global_declaration_token1] = ACTIONS(1125), - [aux_sym_namespace_definition_token1] = ACTIONS(1125), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1125), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1125), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1125), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [aux_sym_trait_declaration_token1] = ACTIONS(1125), - [aux_sym_interface_declaration_token1] = ACTIONS(1125), - [aux_sym_class_declaration_token1] = ACTIONS(1125), - [aux_sym_class_modifier_token1] = ACTIONS(1125), - [aux_sym_class_modifier_token2] = ACTIONS(1125), - [aux_sym_visibility_modifier_token1] = ACTIONS(1125), - [aux_sym_visibility_modifier_token2] = ACTIONS(1125), - [aux_sym_visibility_modifier_token3] = ACTIONS(1125), - [aux_sym_arrow_function_token1] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1123), - [anon_sym_array] = ACTIONS(1125), - [anon_sym_unset] = ACTIONS(1125), - [aux_sym_echo_statement_token1] = ACTIONS(1125), - [anon_sym_declare] = ACTIONS(1125), - [aux_sym_declare_statement_token1] = ACTIONS(1125), - [sym_float] = ACTIONS(1125), - [aux_sym_try_statement_token1] = ACTIONS(1125), - [aux_sym_goto_statement_token1] = ACTIONS(1125), - [aux_sym_continue_statement_token1] = ACTIONS(1125), - [aux_sym_break_statement_token1] = ACTIONS(1125), - [sym_integer] = ACTIONS(1125), - [aux_sym_return_statement_token1] = ACTIONS(1125), - [aux_sym_throw_expression_token1] = ACTIONS(1125), - [aux_sym_while_statement_token1] = ACTIONS(1125), - [aux_sym_while_statement_token2] = ACTIONS(1125), - [aux_sym_do_statement_token1] = ACTIONS(1125), - [aux_sym_for_statement_token1] = ACTIONS(1125), - [aux_sym_for_statement_token2] = ACTIONS(1125), - [aux_sym_foreach_statement_token1] = ACTIONS(1125), - [aux_sym_foreach_statement_token2] = ACTIONS(1125), - [aux_sym_if_statement_token1] = ACTIONS(1125), - [aux_sym_if_statement_token2] = ACTIONS(1125), - [aux_sym_else_if_clause_token1] = ACTIONS(1125), - [aux_sym_else_clause_token1] = ACTIONS(1125), - [aux_sym_match_expression_token1] = ACTIONS(1125), - [aux_sym_match_default_expression_token1] = ACTIONS(1125), - [aux_sym_switch_statement_token1] = ACTIONS(1125), - [aux_sym_switch_block_token1] = ACTIONS(1125), - [aux_sym_case_statement_token1] = ACTIONS(1125), - [anon_sym_AT] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_clone] = ACTIONS(1125), - [anon_sym_print] = ACTIONS(1125), - [anon_sym_new] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [sym_shell_command_expression] = ACTIONS(1123), - [anon_sym_list] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_POUND_LBRACK] = ACTIONS(1123), - [sym_string] = ACTIONS(1123), - [sym_boolean] = ACTIONS(1125), - [sym_null] = ACTIONS(1125), - [anon_sym_DOLLAR] = ACTIONS(1123), - [anon_sym_yield] = ACTIONS(1125), - [aux_sym_include_expression_token1] = ACTIONS(1125), - [aux_sym_include_once_expression_token1] = ACTIONS(1125), - [aux_sym_require_expression_token1] = ACTIONS(1125), - [aux_sym_require_once_expression_token1] = ACTIONS(1125), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_name] = ACTIONS(1130), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1128), + [aux_sym_function_static_declaration_token1] = ACTIONS(1130), + [aux_sym_global_declaration_token1] = ACTIONS(1130), + [aux_sym_namespace_definition_token1] = ACTIONS(1130), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1130), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1130), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1130), + [anon_sym_BSLASH] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [aux_sym_trait_declaration_token1] = ACTIONS(1130), + [aux_sym_interface_declaration_token1] = ACTIONS(1130), + [aux_sym_class_declaration_token1] = ACTIONS(1130), + [aux_sym_final_modifier_token1] = ACTIONS(1130), + [aux_sym_abstract_modifier_token1] = ACTIONS(1130), + [aux_sym_visibility_modifier_token1] = ACTIONS(1130), + [aux_sym_visibility_modifier_token2] = ACTIONS(1130), + [aux_sym_visibility_modifier_token3] = ACTIONS(1130), + [aux_sym_arrow_function_token1] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1128), + [anon_sym_array] = ACTIONS(1130), + [anon_sym_unset] = ACTIONS(1130), + [aux_sym_echo_statement_token1] = ACTIONS(1130), + [anon_sym_declare] = ACTIONS(1130), + [aux_sym_declare_statement_token1] = ACTIONS(1130), + [sym_float] = ACTIONS(1130), + [aux_sym_try_statement_token1] = ACTIONS(1130), + [aux_sym_goto_statement_token1] = ACTIONS(1130), + [aux_sym_continue_statement_token1] = ACTIONS(1130), + [aux_sym_break_statement_token1] = ACTIONS(1130), + [sym_integer] = ACTIONS(1130), + [aux_sym_return_statement_token1] = ACTIONS(1130), + [aux_sym_throw_expression_token1] = ACTIONS(1130), + [aux_sym_while_statement_token1] = ACTIONS(1130), + [aux_sym_while_statement_token2] = ACTIONS(1130), + [aux_sym_do_statement_token1] = ACTIONS(1130), + [aux_sym_for_statement_token1] = ACTIONS(1130), + [aux_sym_for_statement_token2] = ACTIONS(1130), + [aux_sym_foreach_statement_token1] = ACTIONS(1130), + [aux_sym_foreach_statement_token2] = ACTIONS(1130), + [aux_sym_if_statement_token1] = ACTIONS(1130), + [aux_sym_if_statement_token2] = ACTIONS(1130), + [aux_sym_else_if_clause_token1] = ACTIONS(1130), + [aux_sym_else_clause_token1] = ACTIONS(1130), + [aux_sym_match_expression_token1] = ACTIONS(1130), + [aux_sym_match_default_expression_token1] = ACTIONS(1130), + [aux_sym_switch_statement_token1] = ACTIONS(1130), + [aux_sym_switch_block_token1] = ACTIONS(1130), + [aux_sym_case_statement_token1] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_clone] = ACTIONS(1130), + [anon_sym_print] = ACTIONS(1130), + [anon_sym_new] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [sym_shell_command_expression] = ACTIONS(1128), + [anon_sym_list] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_self] = ACTIONS(1130), + [anon_sym_parent] = ACTIONS(1130), + [anon_sym_POUND_LBRACK] = ACTIONS(1128), + [sym_string] = ACTIONS(1128), + [sym_boolean] = ACTIONS(1130), + [sym_null] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1128), + [anon_sym_yield] = ACTIONS(1130), + [aux_sym_include_expression_token1] = ACTIONS(1130), + [aux_sym_include_once_expression_token1] = ACTIONS(1130), + [aux_sym_require_expression_token1] = ACTIONS(1130), + [aux_sym_require_once_expression_token1] = ACTIONS(1130), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1123), + [sym_heredoc] = ACTIONS(1128), }, [465] = { [sym_text_interpolation] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(1127), - [sym_name] = ACTIONS(1129), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1127), - [aux_sym_function_static_declaration_token1] = ACTIONS(1129), - [aux_sym_global_declaration_token1] = ACTIONS(1129), - [aux_sym_namespace_definition_token1] = ACTIONS(1129), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1129), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1129), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1129), - [anon_sym_BSLASH] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1127), - [aux_sym_trait_declaration_token1] = ACTIONS(1129), - [aux_sym_interface_declaration_token1] = ACTIONS(1129), - [aux_sym_class_declaration_token1] = ACTIONS(1129), - [aux_sym_class_modifier_token1] = ACTIONS(1129), - [aux_sym_class_modifier_token2] = ACTIONS(1129), - [aux_sym_visibility_modifier_token1] = ACTIONS(1129), - [aux_sym_visibility_modifier_token2] = ACTIONS(1129), - [aux_sym_visibility_modifier_token3] = ACTIONS(1129), - [aux_sym_arrow_function_token1] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1127), - [anon_sym_array] = ACTIONS(1129), - [anon_sym_unset] = ACTIONS(1129), - [aux_sym_echo_statement_token1] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [aux_sym_declare_statement_token1] = ACTIONS(1129), - [sym_float] = ACTIONS(1129), - [aux_sym_try_statement_token1] = ACTIONS(1129), - [aux_sym_goto_statement_token1] = ACTIONS(1129), - [aux_sym_continue_statement_token1] = ACTIONS(1129), - [aux_sym_break_statement_token1] = ACTIONS(1129), - [sym_integer] = ACTIONS(1129), - [aux_sym_return_statement_token1] = ACTIONS(1129), - [aux_sym_throw_expression_token1] = ACTIONS(1129), - [aux_sym_while_statement_token1] = ACTIONS(1129), - [aux_sym_while_statement_token2] = ACTIONS(1129), - [aux_sym_do_statement_token1] = ACTIONS(1129), - [aux_sym_for_statement_token1] = ACTIONS(1129), - [aux_sym_for_statement_token2] = ACTIONS(1129), - [aux_sym_foreach_statement_token1] = ACTIONS(1129), - [aux_sym_foreach_statement_token2] = ACTIONS(1129), - [aux_sym_if_statement_token1] = ACTIONS(1129), - [aux_sym_if_statement_token2] = ACTIONS(1129), - [aux_sym_else_if_clause_token1] = ACTIONS(1129), - [aux_sym_else_clause_token1] = ACTIONS(1129), - [aux_sym_match_expression_token1] = ACTIONS(1129), - [aux_sym_match_default_expression_token1] = ACTIONS(1129), - [aux_sym_switch_statement_token1] = ACTIONS(1129), - [aux_sym_switch_block_token1] = ACTIONS(1129), - [aux_sym_case_statement_token1] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_clone] = ACTIONS(1129), - [anon_sym_print] = ACTIONS(1129), - [anon_sym_new] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [sym_shell_command_expression] = ACTIONS(1127), - [anon_sym_list] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(1127), - [anon_sym_self] = ACTIONS(1129), - [anon_sym_parent] = ACTIONS(1129), - [anon_sym_POUND_LBRACK] = ACTIONS(1127), - [sym_string] = ACTIONS(1127), - [sym_boolean] = ACTIONS(1129), - [sym_null] = ACTIONS(1129), - [anon_sym_DOLLAR] = ACTIONS(1127), - [anon_sym_yield] = ACTIONS(1129), - [aux_sym_include_expression_token1] = ACTIONS(1129), - [aux_sym_include_once_expression_token1] = ACTIONS(1129), - [aux_sym_require_expression_token1] = ACTIONS(1129), - [aux_sym_require_once_expression_token1] = ACTIONS(1129), + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_name] = ACTIONS(1134), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1132), + [aux_sym_function_static_declaration_token1] = ACTIONS(1134), + [aux_sym_global_declaration_token1] = ACTIONS(1134), + [aux_sym_namespace_definition_token1] = ACTIONS(1134), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1134), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1134), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1134), + [anon_sym_BSLASH] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [aux_sym_trait_declaration_token1] = ACTIONS(1134), + [aux_sym_interface_declaration_token1] = ACTIONS(1134), + [aux_sym_class_declaration_token1] = ACTIONS(1134), + [aux_sym_final_modifier_token1] = ACTIONS(1134), + [aux_sym_abstract_modifier_token1] = ACTIONS(1134), + [aux_sym_visibility_modifier_token1] = ACTIONS(1134), + [aux_sym_visibility_modifier_token2] = ACTIONS(1134), + [aux_sym_visibility_modifier_token3] = ACTIONS(1134), + [aux_sym_arrow_function_token1] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_array] = ACTIONS(1134), + [anon_sym_unset] = ACTIONS(1134), + [aux_sym_echo_statement_token1] = ACTIONS(1134), + [anon_sym_declare] = ACTIONS(1134), + [aux_sym_declare_statement_token1] = ACTIONS(1134), + [sym_float] = ACTIONS(1134), + [aux_sym_try_statement_token1] = ACTIONS(1134), + [aux_sym_goto_statement_token1] = ACTIONS(1134), + [aux_sym_continue_statement_token1] = ACTIONS(1134), + [aux_sym_break_statement_token1] = ACTIONS(1134), + [sym_integer] = ACTIONS(1134), + [aux_sym_return_statement_token1] = ACTIONS(1134), + [aux_sym_throw_expression_token1] = ACTIONS(1134), + [aux_sym_while_statement_token1] = ACTIONS(1134), + [aux_sym_while_statement_token2] = ACTIONS(1134), + [aux_sym_do_statement_token1] = ACTIONS(1134), + [aux_sym_for_statement_token1] = ACTIONS(1134), + [aux_sym_for_statement_token2] = ACTIONS(1134), + [aux_sym_foreach_statement_token1] = ACTIONS(1134), + [aux_sym_foreach_statement_token2] = ACTIONS(1134), + [aux_sym_if_statement_token1] = ACTIONS(1134), + [aux_sym_if_statement_token2] = ACTIONS(1134), + [aux_sym_else_if_clause_token1] = ACTIONS(1134), + [aux_sym_else_clause_token1] = ACTIONS(1134), + [aux_sym_match_expression_token1] = ACTIONS(1134), + [aux_sym_match_default_expression_token1] = ACTIONS(1134), + [aux_sym_switch_statement_token1] = ACTIONS(1134), + [aux_sym_switch_block_token1] = ACTIONS(1134), + [aux_sym_case_statement_token1] = ACTIONS(1134), + [anon_sym_AT] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_clone] = ACTIONS(1134), + [anon_sym_print] = ACTIONS(1134), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [sym_shell_command_expression] = ACTIONS(1132), + [anon_sym_list] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_self] = ACTIONS(1134), + [anon_sym_parent] = ACTIONS(1134), + [anon_sym_POUND_LBRACK] = ACTIONS(1132), + [sym_string] = ACTIONS(1132), + [sym_boolean] = ACTIONS(1134), + [sym_null] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(1132), + [anon_sym_yield] = ACTIONS(1134), + [aux_sym_include_expression_token1] = ACTIONS(1134), + [aux_sym_include_once_expression_token1] = ACTIONS(1134), + [aux_sym_require_expression_token1] = ACTIONS(1134), + [aux_sym_require_once_expression_token1] = ACTIONS(1134), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1127), + [sym_heredoc] = ACTIONS(1132), }, [466] = { [sym_text_interpolation] = STATE(466), - [ts_builtin_sym_end] = ACTIONS(1131), - [sym_name] = ACTIONS(1133), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1131), - [aux_sym_function_static_declaration_token1] = ACTIONS(1133), - [aux_sym_global_declaration_token1] = ACTIONS(1133), - [aux_sym_namespace_definition_token1] = ACTIONS(1133), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1133), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1133), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1133), - [anon_sym_BSLASH] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_RBRACE] = ACTIONS(1131), - [aux_sym_trait_declaration_token1] = ACTIONS(1133), - [aux_sym_interface_declaration_token1] = ACTIONS(1133), - [aux_sym_class_declaration_token1] = ACTIONS(1133), - [aux_sym_class_modifier_token1] = ACTIONS(1133), - [aux_sym_class_modifier_token2] = ACTIONS(1133), - [aux_sym_visibility_modifier_token1] = ACTIONS(1133), - [aux_sym_visibility_modifier_token2] = ACTIONS(1133), - [aux_sym_visibility_modifier_token3] = ACTIONS(1133), - [aux_sym_arrow_function_token1] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_array] = ACTIONS(1133), - [anon_sym_unset] = ACTIONS(1133), - [aux_sym_echo_statement_token1] = ACTIONS(1133), - [anon_sym_declare] = ACTIONS(1133), - [aux_sym_declare_statement_token1] = ACTIONS(1133), - [sym_float] = ACTIONS(1133), - [aux_sym_try_statement_token1] = ACTIONS(1133), - [aux_sym_goto_statement_token1] = ACTIONS(1133), - [aux_sym_continue_statement_token1] = ACTIONS(1133), - [aux_sym_break_statement_token1] = ACTIONS(1133), - [sym_integer] = ACTIONS(1133), - [aux_sym_return_statement_token1] = ACTIONS(1133), - [aux_sym_throw_expression_token1] = ACTIONS(1133), - [aux_sym_while_statement_token1] = ACTIONS(1133), - [aux_sym_while_statement_token2] = ACTIONS(1133), - [aux_sym_do_statement_token1] = ACTIONS(1133), - [aux_sym_for_statement_token1] = ACTIONS(1133), - [aux_sym_for_statement_token2] = ACTIONS(1133), - [aux_sym_foreach_statement_token1] = ACTIONS(1133), - [aux_sym_foreach_statement_token2] = ACTIONS(1133), - [aux_sym_if_statement_token1] = ACTIONS(1133), - [aux_sym_if_statement_token2] = ACTIONS(1133), - [aux_sym_else_if_clause_token1] = ACTIONS(1133), - [aux_sym_else_clause_token1] = ACTIONS(1133), - [aux_sym_match_expression_token1] = ACTIONS(1133), - [aux_sym_match_default_expression_token1] = ACTIONS(1133), - [aux_sym_switch_statement_token1] = ACTIONS(1133), - [aux_sym_switch_block_token1] = ACTIONS(1133), - [aux_sym_case_statement_token1] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_clone] = ACTIONS(1133), - [anon_sym_print] = ACTIONS(1133), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(1131), - [sym_shell_command_expression] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1131), - [anon_sym_self] = ACTIONS(1133), - [anon_sym_parent] = ACTIONS(1133), - [anon_sym_POUND_LBRACK] = ACTIONS(1131), - [sym_string] = ACTIONS(1131), - [sym_boolean] = ACTIONS(1133), - [sym_null] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1131), - [anon_sym_yield] = ACTIONS(1133), - [aux_sym_include_expression_token1] = ACTIONS(1133), - [aux_sym_include_once_expression_token1] = ACTIONS(1133), - [aux_sym_require_expression_token1] = ACTIONS(1133), - [aux_sym_require_once_expression_token1] = ACTIONS(1133), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_name] = ACTIONS(1138), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1136), + [aux_sym_function_static_declaration_token1] = ACTIONS(1138), + [aux_sym_global_declaration_token1] = ACTIONS(1138), + [aux_sym_namespace_definition_token1] = ACTIONS(1138), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1138), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1138), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1138), + [anon_sym_BSLASH] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [aux_sym_trait_declaration_token1] = ACTIONS(1138), + [aux_sym_interface_declaration_token1] = ACTIONS(1138), + [aux_sym_class_declaration_token1] = ACTIONS(1138), + [aux_sym_final_modifier_token1] = ACTIONS(1138), + [aux_sym_abstract_modifier_token1] = ACTIONS(1138), + [aux_sym_visibility_modifier_token1] = ACTIONS(1138), + [aux_sym_visibility_modifier_token2] = ACTIONS(1138), + [aux_sym_visibility_modifier_token3] = ACTIONS(1138), + [aux_sym_arrow_function_token1] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_array] = ACTIONS(1138), + [anon_sym_unset] = ACTIONS(1138), + [aux_sym_echo_statement_token1] = ACTIONS(1138), + [anon_sym_declare] = ACTIONS(1138), + [aux_sym_declare_statement_token1] = ACTIONS(1138), + [sym_float] = ACTIONS(1138), + [aux_sym_try_statement_token1] = ACTIONS(1138), + [aux_sym_goto_statement_token1] = ACTIONS(1138), + [aux_sym_continue_statement_token1] = ACTIONS(1138), + [aux_sym_break_statement_token1] = ACTIONS(1138), + [sym_integer] = ACTIONS(1138), + [aux_sym_return_statement_token1] = ACTIONS(1138), + [aux_sym_throw_expression_token1] = ACTIONS(1138), + [aux_sym_while_statement_token1] = ACTIONS(1138), + [aux_sym_while_statement_token2] = ACTIONS(1138), + [aux_sym_do_statement_token1] = ACTIONS(1138), + [aux_sym_for_statement_token1] = ACTIONS(1138), + [aux_sym_for_statement_token2] = ACTIONS(1138), + [aux_sym_foreach_statement_token1] = ACTIONS(1138), + [aux_sym_foreach_statement_token2] = ACTIONS(1138), + [aux_sym_if_statement_token1] = ACTIONS(1138), + [aux_sym_if_statement_token2] = ACTIONS(1138), + [aux_sym_else_if_clause_token1] = ACTIONS(1138), + [aux_sym_else_clause_token1] = ACTIONS(1138), + [aux_sym_match_expression_token1] = ACTIONS(1138), + [aux_sym_match_default_expression_token1] = ACTIONS(1138), + [aux_sym_switch_statement_token1] = ACTIONS(1138), + [aux_sym_switch_block_token1] = ACTIONS(1138), + [aux_sym_case_statement_token1] = ACTIONS(1138), + [anon_sym_AT] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_clone] = ACTIONS(1138), + [anon_sym_print] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [sym_shell_command_expression] = ACTIONS(1136), + [anon_sym_list] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_self] = ACTIONS(1138), + [anon_sym_parent] = ACTIONS(1138), + [anon_sym_POUND_LBRACK] = ACTIONS(1136), + [sym_string] = ACTIONS(1136), + [sym_boolean] = ACTIONS(1138), + [sym_null] = ACTIONS(1138), + [anon_sym_DOLLAR] = ACTIONS(1136), + [anon_sym_yield] = ACTIONS(1138), + [aux_sym_include_expression_token1] = ACTIONS(1138), + [aux_sym_include_once_expression_token1] = ACTIONS(1138), + [aux_sym_require_expression_token1] = ACTIONS(1138), + [aux_sym_require_once_expression_token1] = ACTIONS(1138), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1131), + [sym_heredoc] = ACTIONS(1136), }, [467] = { [sym_text_interpolation] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(1135), - [sym_name] = ACTIONS(1137), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1135), - [aux_sym_function_static_declaration_token1] = ACTIONS(1137), - [aux_sym_global_declaration_token1] = ACTIONS(1137), - [aux_sym_namespace_definition_token1] = ACTIONS(1137), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1137), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1137), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1135), - [aux_sym_trait_declaration_token1] = ACTIONS(1137), - [aux_sym_interface_declaration_token1] = ACTIONS(1137), - [aux_sym_class_declaration_token1] = ACTIONS(1137), - [aux_sym_class_modifier_token1] = ACTIONS(1137), - [aux_sym_class_modifier_token2] = ACTIONS(1137), - [aux_sym_visibility_modifier_token1] = ACTIONS(1137), - [aux_sym_visibility_modifier_token2] = ACTIONS(1137), - [aux_sym_visibility_modifier_token3] = ACTIONS(1137), - [aux_sym_arrow_function_token1] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_array] = ACTIONS(1137), - [anon_sym_unset] = ACTIONS(1137), - [aux_sym_echo_statement_token1] = ACTIONS(1137), - [anon_sym_declare] = ACTIONS(1137), - [aux_sym_declare_statement_token1] = ACTIONS(1137), - [sym_float] = ACTIONS(1137), - [aux_sym_try_statement_token1] = ACTIONS(1137), - [aux_sym_goto_statement_token1] = ACTIONS(1137), - [aux_sym_continue_statement_token1] = ACTIONS(1137), - [aux_sym_break_statement_token1] = ACTIONS(1137), - [sym_integer] = ACTIONS(1137), - [aux_sym_return_statement_token1] = ACTIONS(1137), - [aux_sym_throw_expression_token1] = ACTIONS(1137), - [aux_sym_while_statement_token1] = ACTIONS(1137), - [aux_sym_while_statement_token2] = ACTIONS(1137), - [aux_sym_do_statement_token1] = ACTIONS(1137), - [aux_sym_for_statement_token1] = ACTIONS(1137), - [aux_sym_for_statement_token2] = ACTIONS(1137), - [aux_sym_foreach_statement_token1] = ACTIONS(1137), - [aux_sym_foreach_statement_token2] = ACTIONS(1137), - [aux_sym_if_statement_token1] = ACTIONS(1137), - [aux_sym_if_statement_token2] = ACTIONS(1137), - [aux_sym_else_if_clause_token1] = ACTIONS(1137), - [aux_sym_else_clause_token1] = ACTIONS(1137), - [aux_sym_match_expression_token1] = ACTIONS(1137), - [aux_sym_match_default_expression_token1] = ACTIONS(1137), - [aux_sym_switch_statement_token1] = ACTIONS(1137), - [aux_sym_switch_block_token1] = ACTIONS(1137), - [aux_sym_case_statement_token1] = ACTIONS(1137), - [anon_sym_AT] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_clone] = ACTIONS(1137), - [anon_sym_print] = ACTIONS(1137), - [anon_sym_new] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1135), - [sym_shell_command_expression] = ACTIONS(1135), - [anon_sym_list] = ACTIONS(1137), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_self] = ACTIONS(1137), - [anon_sym_parent] = ACTIONS(1137), - [anon_sym_POUND_LBRACK] = ACTIONS(1135), - [sym_string] = ACTIONS(1135), - [sym_boolean] = ACTIONS(1137), - [sym_null] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(1135), - [anon_sym_yield] = ACTIONS(1137), - [aux_sym_include_expression_token1] = ACTIONS(1137), - [aux_sym_include_once_expression_token1] = ACTIONS(1137), - [aux_sym_require_expression_token1] = ACTIONS(1137), - [aux_sym_require_once_expression_token1] = ACTIONS(1137), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_name] = ACTIONS(1142), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1140), + [aux_sym_function_static_declaration_token1] = ACTIONS(1142), + [aux_sym_global_declaration_token1] = ACTIONS(1142), + [aux_sym_namespace_definition_token1] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1142), + [anon_sym_BSLASH] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [aux_sym_trait_declaration_token1] = ACTIONS(1142), + [aux_sym_interface_declaration_token1] = ACTIONS(1142), + [aux_sym_class_declaration_token1] = ACTIONS(1142), + [aux_sym_final_modifier_token1] = ACTIONS(1142), + [aux_sym_abstract_modifier_token1] = ACTIONS(1142), + [aux_sym_visibility_modifier_token1] = ACTIONS(1142), + [aux_sym_visibility_modifier_token2] = ACTIONS(1142), + [aux_sym_visibility_modifier_token3] = ACTIONS(1142), + [aux_sym_arrow_function_token1] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_array] = ACTIONS(1142), + [anon_sym_unset] = ACTIONS(1142), + [aux_sym_echo_statement_token1] = ACTIONS(1142), + [anon_sym_declare] = ACTIONS(1142), + [aux_sym_declare_statement_token1] = ACTIONS(1142), + [sym_float] = ACTIONS(1142), + [aux_sym_try_statement_token1] = ACTIONS(1142), + [aux_sym_goto_statement_token1] = ACTIONS(1142), + [aux_sym_continue_statement_token1] = ACTIONS(1142), + [aux_sym_break_statement_token1] = ACTIONS(1142), + [sym_integer] = ACTIONS(1142), + [aux_sym_return_statement_token1] = ACTIONS(1142), + [aux_sym_throw_expression_token1] = ACTIONS(1142), + [aux_sym_while_statement_token1] = ACTIONS(1142), + [aux_sym_while_statement_token2] = ACTIONS(1142), + [aux_sym_do_statement_token1] = ACTIONS(1142), + [aux_sym_for_statement_token1] = ACTIONS(1142), + [aux_sym_for_statement_token2] = ACTIONS(1142), + [aux_sym_foreach_statement_token1] = ACTIONS(1142), + [aux_sym_foreach_statement_token2] = ACTIONS(1142), + [aux_sym_if_statement_token1] = ACTIONS(1142), + [aux_sym_if_statement_token2] = ACTIONS(1142), + [aux_sym_else_if_clause_token1] = ACTIONS(1142), + [aux_sym_else_clause_token1] = ACTIONS(1142), + [aux_sym_match_expression_token1] = ACTIONS(1142), + [aux_sym_match_default_expression_token1] = ACTIONS(1142), + [aux_sym_switch_statement_token1] = ACTIONS(1142), + [aux_sym_switch_block_token1] = ACTIONS(1142), + [aux_sym_case_statement_token1] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(1140), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_clone] = ACTIONS(1142), + [anon_sym_print] = ACTIONS(1142), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [sym_shell_command_expression] = ACTIONS(1140), + [anon_sym_list] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_self] = ACTIONS(1142), + [anon_sym_parent] = ACTIONS(1142), + [anon_sym_POUND_LBRACK] = ACTIONS(1140), + [sym_string] = ACTIONS(1140), + [sym_boolean] = ACTIONS(1142), + [sym_null] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [aux_sym_include_expression_token1] = ACTIONS(1142), + [aux_sym_include_once_expression_token1] = ACTIONS(1142), + [aux_sym_require_expression_token1] = ACTIONS(1142), + [aux_sym_require_once_expression_token1] = ACTIONS(1142), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1135), + [sym_heredoc] = ACTIONS(1140), }, [468] = { [sym_text_interpolation] = STATE(468), - [ts_builtin_sym_end] = ACTIONS(1139), - [sym_name] = ACTIONS(1141), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1139), - [aux_sym_function_static_declaration_token1] = ACTIONS(1141), - [aux_sym_global_declaration_token1] = ACTIONS(1141), - [aux_sym_namespace_definition_token1] = ACTIONS(1141), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1141), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1141), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1141), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [aux_sym_trait_declaration_token1] = ACTIONS(1141), - [aux_sym_interface_declaration_token1] = ACTIONS(1141), - [aux_sym_class_declaration_token1] = ACTIONS(1141), - [aux_sym_class_modifier_token1] = ACTIONS(1141), - [aux_sym_class_modifier_token2] = ACTIONS(1141), - [aux_sym_visibility_modifier_token1] = ACTIONS(1141), - [aux_sym_visibility_modifier_token2] = ACTIONS(1141), - [aux_sym_visibility_modifier_token3] = ACTIONS(1141), - [aux_sym_arrow_function_token1] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_array] = ACTIONS(1141), - [anon_sym_unset] = ACTIONS(1141), - [aux_sym_echo_statement_token1] = ACTIONS(1141), - [anon_sym_declare] = ACTIONS(1141), - [aux_sym_declare_statement_token1] = ACTIONS(1141), - [sym_float] = ACTIONS(1141), - [aux_sym_try_statement_token1] = ACTIONS(1141), - [aux_sym_goto_statement_token1] = ACTIONS(1141), - [aux_sym_continue_statement_token1] = ACTIONS(1141), - [aux_sym_break_statement_token1] = ACTIONS(1141), - [sym_integer] = ACTIONS(1141), - [aux_sym_return_statement_token1] = ACTIONS(1141), - [aux_sym_throw_expression_token1] = ACTIONS(1141), - [aux_sym_while_statement_token1] = ACTIONS(1141), - [aux_sym_while_statement_token2] = ACTIONS(1141), - [aux_sym_do_statement_token1] = ACTIONS(1141), - [aux_sym_for_statement_token1] = ACTIONS(1141), - [aux_sym_for_statement_token2] = ACTIONS(1141), - [aux_sym_foreach_statement_token1] = ACTIONS(1141), - [aux_sym_foreach_statement_token2] = ACTIONS(1141), - [aux_sym_if_statement_token1] = ACTIONS(1141), - [aux_sym_if_statement_token2] = ACTIONS(1141), - [aux_sym_else_if_clause_token1] = ACTIONS(1141), - [aux_sym_else_clause_token1] = ACTIONS(1141), - [aux_sym_match_expression_token1] = ACTIONS(1141), - [aux_sym_match_default_expression_token1] = ACTIONS(1141), - [aux_sym_switch_statement_token1] = ACTIONS(1141), - [aux_sym_switch_block_token1] = ACTIONS(1141), - [aux_sym_case_statement_token1] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_BANG] = ACTIONS(1139), - [anon_sym_clone] = ACTIONS(1141), - [anon_sym_print] = ACTIONS(1141), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [sym_shell_command_expression] = ACTIONS(1139), - [anon_sym_list] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1139), - [anon_sym_self] = ACTIONS(1141), - [anon_sym_parent] = ACTIONS(1141), - [anon_sym_POUND_LBRACK] = ACTIONS(1139), - [sym_string] = ACTIONS(1139), - [sym_boolean] = ACTIONS(1141), - [sym_null] = ACTIONS(1141), - [anon_sym_DOLLAR] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [aux_sym_include_expression_token1] = ACTIONS(1141), - [aux_sym_include_once_expression_token1] = ACTIONS(1141), - [aux_sym_require_expression_token1] = ACTIONS(1141), - [aux_sym_require_once_expression_token1] = ACTIONS(1141), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_name] = ACTIONS(1146), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1144), + [aux_sym_function_static_declaration_token1] = ACTIONS(1146), + [aux_sym_global_declaration_token1] = ACTIONS(1146), + [aux_sym_namespace_definition_token1] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1146), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1146), + [anon_sym_BSLASH] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [aux_sym_trait_declaration_token1] = ACTIONS(1146), + [aux_sym_interface_declaration_token1] = ACTIONS(1146), + [aux_sym_class_declaration_token1] = ACTIONS(1146), + [aux_sym_final_modifier_token1] = ACTIONS(1146), + [aux_sym_abstract_modifier_token1] = ACTIONS(1146), + [aux_sym_visibility_modifier_token1] = ACTIONS(1146), + [aux_sym_visibility_modifier_token2] = ACTIONS(1146), + [aux_sym_visibility_modifier_token3] = ACTIONS(1146), + [aux_sym_arrow_function_token1] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_array] = ACTIONS(1146), + [anon_sym_unset] = ACTIONS(1146), + [aux_sym_echo_statement_token1] = ACTIONS(1146), + [anon_sym_declare] = ACTIONS(1146), + [aux_sym_declare_statement_token1] = ACTIONS(1146), + [sym_float] = ACTIONS(1146), + [aux_sym_try_statement_token1] = ACTIONS(1146), + [aux_sym_goto_statement_token1] = ACTIONS(1146), + [aux_sym_continue_statement_token1] = ACTIONS(1146), + [aux_sym_break_statement_token1] = ACTIONS(1146), + [sym_integer] = ACTIONS(1146), + [aux_sym_return_statement_token1] = ACTIONS(1146), + [aux_sym_throw_expression_token1] = ACTIONS(1146), + [aux_sym_while_statement_token1] = ACTIONS(1146), + [aux_sym_while_statement_token2] = ACTIONS(1146), + [aux_sym_do_statement_token1] = ACTIONS(1146), + [aux_sym_for_statement_token1] = ACTIONS(1146), + [aux_sym_for_statement_token2] = ACTIONS(1146), + [aux_sym_foreach_statement_token1] = ACTIONS(1146), + [aux_sym_foreach_statement_token2] = ACTIONS(1146), + [aux_sym_if_statement_token1] = ACTIONS(1146), + [aux_sym_if_statement_token2] = ACTIONS(1146), + [aux_sym_else_if_clause_token1] = ACTIONS(1146), + [aux_sym_else_clause_token1] = ACTIONS(1146), + [aux_sym_match_expression_token1] = ACTIONS(1146), + [aux_sym_match_default_expression_token1] = ACTIONS(1146), + [aux_sym_switch_statement_token1] = ACTIONS(1146), + [aux_sym_switch_block_token1] = ACTIONS(1146), + [aux_sym_case_statement_token1] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(1144), + [anon_sym_PLUS] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_clone] = ACTIONS(1146), + [anon_sym_print] = ACTIONS(1146), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_PLUS_PLUS] = ACTIONS(1144), + [anon_sym_DASH_DASH] = ACTIONS(1144), + [sym_shell_command_expression] = ACTIONS(1144), + [anon_sym_list] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_self] = ACTIONS(1146), + [anon_sym_parent] = ACTIONS(1146), + [anon_sym_POUND_LBRACK] = ACTIONS(1144), + [sym_string] = ACTIONS(1144), + [sym_boolean] = ACTIONS(1146), + [sym_null] = ACTIONS(1146), + [anon_sym_DOLLAR] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1146), + [aux_sym_include_expression_token1] = ACTIONS(1146), + [aux_sym_include_once_expression_token1] = ACTIONS(1146), + [aux_sym_require_expression_token1] = ACTIONS(1146), + [aux_sym_require_once_expression_token1] = ACTIONS(1146), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1139), + [sym_heredoc] = ACTIONS(1144), }, [469] = { [sym_text_interpolation] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(1143), - [sym_name] = ACTIONS(1145), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1143), - [aux_sym_function_static_declaration_token1] = ACTIONS(1145), - [aux_sym_global_declaration_token1] = ACTIONS(1145), - [aux_sym_namespace_definition_token1] = ACTIONS(1145), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1145), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1145), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1145), - [anon_sym_BSLASH] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1143), - [anon_sym_RBRACE] = ACTIONS(1143), - [aux_sym_trait_declaration_token1] = ACTIONS(1145), - [aux_sym_interface_declaration_token1] = ACTIONS(1145), - [aux_sym_class_declaration_token1] = ACTIONS(1145), - [aux_sym_class_modifier_token1] = ACTIONS(1145), - [aux_sym_class_modifier_token2] = ACTIONS(1145), - [aux_sym_visibility_modifier_token1] = ACTIONS(1145), - [aux_sym_visibility_modifier_token2] = ACTIONS(1145), - [aux_sym_visibility_modifier_token3] = ACTIONS(1145), - [aux_sym_arrow_function_token1] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_array] = ACTIONS(1145), - [anon_sym_unset] = ACTIONS(1145), - [aux_sym_echo_statement_token1] = ACTIONS(1145), - [anon_sym_declare] = ACTIONS(1145), - [aux_sym_declare_statement_token1] = ACTIONS(1145), - [sym_float] = ACTIONS(1145), - [aux_sym_try_statement_token1] = ACTIONS(1145), - [aux_sym_goto_statement_token1] = ACTIONS(1145), - [aux_sym_continue_statement_token1] = ACTIONS(1145), - [aux_sym_break_statement_token1] = ACTIONS(1145), - [sym_integer] = ACTIONS(1145), - [aux_sym_return_statement_token1] = ACTIONS(1145), - [aux_sym_throw_expression_token1] = ACTIONS(1145), - [aux_sym_while_statement_token1] = ACTIONS(1145), - [aux_sym_while_statement_token2] = ACTIONS(1145), - [aux_sym_do_statement_token1] = ACTIONS(1145), - [aux_sym_for_statement_token1] = ACTIONS(1145), - [aux_sym_for_statement_token2] = ACTIONS(1145), - [aux_sym_foreach_statement_token1] = ACTIONS(1145), - [aux_sym_foreach_statement_token2] = ACTIONS(1145), - [aux_sym_if_statement_token1] = ACTIONS(1145), - [aux_sym_if_statement_token2] = ACTIONS(1145), - [aux_sym_else_if_clause_token1] = ACTIONS(1145), - [aux_sym_else_clause_token1] = ACTIONS(1145), - [aux_sym_match_expression_token1] = ACTIONS(1145), - [aux_sym_match_default_expression_token1] = ACTIONS(1145), - [aux_sym_switch_statement_token1] = ACTIONS(1145), - [aux_sym_switch_block_token1] = ACTIONS(1145), - [aux_sym_case_statement_token1] = ACTIONS(1145), - [anon_sym_AT] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_clone] = ACTIONS(1145), - [anon_sym_print] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [sym_shell_command_expression] = ACTIONS(1143), - [anon_sym_list] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1143), - [anon_sym_self] = ACTIONS(1145), - [anon_sym_parent] = ACTIONS(1145), - [anon_sym_POUND_LBRACK] = ACTIONS(1143), - [sym_string] = ACTIONS(1143), - [sym_boolean] = ACTIONS(1145), - [sym_null] = ACTIONS(1145), - [anon_sym_DOLLAR] = ACTIONS(1143), - [anon_sym_yield] = ACTIONS(1145), - [aux_sym_include_expression_token1] = ACTIONS(1145), - [aux_sym_include_once_expression_token1] = ACTIONS(1145), - [aux_sym_require_expression_token1] = ACTIONS(1145), - [aux_sym_require_once_expression_token1] = ACTIONS(1145), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_name] = ACTIONS(1150), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1148), + [aux_sym_function_static_declaration_token1] = ACTIONS(1150), + [aux_sym_global_declaration_token1] = ACTIONS(1150), + [aux_sym_namespace_definition_token1] = ACTIONS(1150), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1150), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1150), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1150), + [anon_sym_BSLASH] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [aux_sym_trait_declaration_token1] = ACTIONS(1150), + [aux_sym_interface_declaration_token1] = ACTIONS(1150), + [aux_sym_class_declaration_token1] = ACTIONS(1150), + [aux_sym_final_modifier_token1] = ACTIONS(1150), + [aux_sym_abstract_modifier_token1] = ACTIONS(1150), + [aux_sym_visibility_modifier_token1] = ACTIONS(1150), + [aux_sym_visibility_modifier_token2] = ACTIONS(1150), + [aux_sym_visibility_modifier_token3] = ACTIONS(1150), + [aux_sym_arrow_function_token1] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_array] = ACTIONS(1150), + [anon_sym_unset] = ACTIONS(1150), + [aux_sym_echo_statement_token1] = ACTIONS(1150), + [anon_sym_declare] = ACTIONS(1150), + [aux_sym_declare_statement_token1] = ACTIONS(1150), + [sym_float] = ACTIONS(1150), + [aux_sym_try_statement_token1] = ACTIONS(1150), + [aux_sym_goto_statement_token1] = ACTIONS(1150), + [aux_sym_continue_statement_token1] = ACTIONS(1150), + [aux_sym_break_statement_token1] = ACTIONS(1150), + [sym_integer] = ACTIONS(1150), + [aux_sym_return_statement_token1] = ACTIONS(1150), + [aux_sym_throw_expression_token1] = ACTIONS(1150), + [aux_sym_while_statement_token1] = ACTIONS(1150), + [aux_sym_while_statement_token2] = ACTIONS(1150), + [aux_sym_do_statement_token1] = ACTIONS(1150), + [aux_sym_for_statement_token1] = ACTIONS(1150), + [aux_sym_for_statement_token2] = ACTIONS(1150), + [aux_sym_foreach_statement_token1] = ACTIONS(1150), + [aux_sym_foreach_statement_token2] = ACTIONS(1150), + [aux_sym_if_statement_token1] = ACTIONS(1150), + [aux_sym_if_statement_token2] = ACTIONS(1150), + [aux_sym_else_if_clause_token1] = ACTIONS(1150), + [aux_sym_else_clause_token1] = ACTIONS(1150), + [aux_sym_match_expression_token1] = ACTIONS(1150), + [aux_sym_match_default_expression_token1] = ACTIONS(1150), + [aux_sym_switch_statement_token1] = ACTIONS(1150), + [aux_sym_switch_block_token1] = ACTIONS(1150), + [aux_sym_case_statement_token1] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_clone] = ACTIONS(1150), + [anon_sym_print] = ACTIONS(1150), + [anon_sym_new] = ACTIONS(1150), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_DASH_DASH] = ACTIONS(1148), + [sym_shell_command_expression] = ACTIONS(1148), + [anon_sym_list] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_self] = ACTIONS(1150), + [anon_sym_parent] = ACTIONS(1150), + [anon_sym_POUND_LBRACK] = ACTIONS(1148), + [sym_string] = ACTIONS(1148), + [sym_boolean] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [anon_sym_DOLLAR] = ACTIONS(1148), + [anon_sym_yield] = ACTIONS(1150), + [aux_sym_include_expression_token1] = ACTIONS(1150), + [aux_sym_include_once_expression_token1] = ACTIONS(1150), + [aux_sym_require_expression_token1] = ACTIONS(1150), + [aux_sym_require_once_expression_token1] = ACTIONS(1150), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1143), + [sym_heredoc] = ACTIONS(1148), }, [470] = { [sym_text_interpolation] = STATE(470), - [ts_builtin_sym_end] = ACTIONS(1147), - [sym_name] = ACTIONS(1149), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1147), - [aux_sym_function_static_declaration_token1] = ACTIONS(1149), - [aux_sym_global_declaration_token1] = ACTIONS(1149), - [aux_sym_namespace_definition_token1] = ACTIONS(1149), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1149), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1149), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1149), - [anon_sym_BSLASH] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1147), - [aux_sym_trait_declaration_token1] = ACTIONS(1149), - [aux_sym_interface_declaration_token1] = ACTIONS(1149), - [aux_sym_class_declaration_token1] = ACTIONS(1149), - [aux_sym_class_modifier_token1] = ACTIONS(1149), - [aux_sym_class_modifier_token2] = ACTIONS(1149), - [aux_sym_visibility_modifier_token1] = ACTIONS(1149), - [aux_sym_visibility_modifier_token2] = ACTIONS(1149), - [aux_sym_visibility_modifier_token3] = ACTIONS(1149), - [aux_sym_arrow_function_token1] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1147), - [anon_sym_array] = ACTIONS(1149), - [anon_sym_unset] = ACTIONS(1149), - [aux_sym_echo_statement_token1] = ACTIONS(1149), - [anon_sym_declare] = ACTIONS(1149), - [aux_sym_declare_statement_token1] = ACTIONS(1149), - [sym_float] = ACTIONS(1149), - [aux_sym_try_statement_token1] = ACTIONS(1149), - [aux_sym_goto_statement_token1] = ACTIONS(1149), - [aux_sym_continue_statement_token1] = ACTIONS(1149), - [aux_sym_break_statement_token1] = ACTIONS(1149), - [sym_integer] = ACTIONS(1149), - [aux_sym_return_statement_token1] = ACTIONS(1149), - [aux_sym_throw_expression_token1] = ACTIONS(1149), - [aux_sym_while_statement_token1] = ACTIONS(1149), - [aux_sym_while_statement_token2] = ACTIONS(1149), - [aux_sym_do_statement_token1] = ACTIONS(1149), - [aux_sym_for_statement_token1] = ACTIONS(1149), - [aux_sym_for_statement_token2] = ACTIONS(1149), - [aux_sym_foreach_statement_token1] = ACTIONS(1149), - [aux_sym_foreach_statement_token2] = ACTIONS(1149), - [aux_sym_if_statement_token1] = ACTIONS(1149), - [aux_sym_if_statement_token2] = ACTIONS(1149), - [aux_sym_else_if_clause_token1] = ACTIONS(1149), - [aux_sym_else_clause_token1] = ACTIONS(1149), - [aux_sym_match_expression_token1] = ACTIONS(1149), - [aux_sym_match_default_expression_token1] = ACTIONS(1149), - [aux_sym_switch_statement_token1] = ACTIONS(1149), - [aux_sym_switch_block_token1] = ACTIONS(1149), - [aux_sym_case_statement_token1] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_clone] = ACTIONS(1149), - [anon_sym_print] = ACTIONS(1149), - [anon_sym_new] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [sym_shell_command_expression] = ACTIONS(1147), - [anon_sym_list] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1147), - [anon_sym_self] = ACTIONS(1149), - [anon_sym_parent] = ACTIONS(1149), - [anon_sym_POUND_LBRACK] = ACTIONS(1147), - [sym_string] = ACTIONS(1147), - [sym_boolean] = ACTIONS(1149), - [sym_null] = ACTIONS(1149), - [anon_sym_DOLLAR] = ACTIONS(1147), - [anon_sym_yield] = ACTIONS(1149), - [aux_sym_include_expression_token1] = ACTIONS(1149), - [aux_sym_include_once_expression_token1] = ACTIONS(1149), - [aux_sym_require_expression_token1] = ACTIONS(1149), - [aux_sym_require_once_expression_token1] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_name] = ACTIONS(1154), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1152), + [aux_sym_function_static_declaration_token1] = ACTIONS(1154), + [aux_sym_global_declaration_token1] = ACTIONS(1154), + [aux_sym_namespace_definition_token1] = ACTIONS(1154), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1154), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1154), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1154), + [anon_sym_BSLASH] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [aux_sym_trait_declaration_token1] = ACTIONS(1154), + [aux_sym_interface_declaration_token1] = ACTIONS(1154), + [aux_sym_class_declaration_token1] = ACTIONS(1154), + [aux_sym_final_modifier_token1] = ACTIONS(1154), + [aux_sym_abstract_modifier_token1] = ACTIONS(1154), + [aux_sym_visibility_modifier_token1] = ACTIONS(1154), + [aux_sym_visibility_modifier_token2] = ACTIONS(1154), + [aux_sym_visibility_modifier_token3] = ACTIONS(1154), + [aux_sym_arrow_function_token1] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_array] = ACTIONS(1154), + [anon_sym_unset] = ACTIONS(1154), + [aux_sym_echo_statement_token1] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [aux_sym_declare_statement_token1] = ACTIONS(1154), + [sym_float] = ACTIONS(1154), + [aux_sym_try_statement_token1] = ACTIONS(1154), + [aux_sym_goto_statement_token1] = ACTIONS(1154), + [aux_sym_continue_statement_token1] = ACTIONS(1154), + [aux_sym_break_statement_token1] = ACTIONS(1154), + [sym_integer] = ACTIONS(1154), + [aux_sym_return_statement_token1] = ACTIONS(1154), + [aux_sym_throw_expression_token1] = ACTIONS(1154), + [aux_sym_while_statement_token1] = ACTIONS(1154), + [aux_sym_while_statement_token2] = ACTIONS(1154), + [aux_sym_do_statement_token1] = ACTIONS(1154), + [aux_sym_for_statement_token1] = ACTIONS(1154), + [aux_sym_for_statement_token2] = ACTIONS(1154), + [aux_sym_foreach_statement_token1] = ACTIONS(1154), + [aux_sym_foreach_statement_token2] = ACTIONS(1154), + [aux_sym_if_statement_token1] = ACTIONS(1154), + [aux_sym_if_statement_token2] = ACTIONS(1154), + [aux_sym_else_if_clause_token1] = ACTIONS(1154), + [aux_sym_else_clause_token1] = ACTIONS(1154), + [aux_sym_match_expression_token1] = ACTIONS(1154), + [aux_sym_match_default_expression_token1] = ACTIONS(1154), + [aux_sym_switch_statement_token1] = ACTIONS(1154), + [aux_sym_switch_block_token1] = ACTIONS(1154), + [aux_sym_case_statement_token1] = ACTIONS(1154), + [anon_sym_AT] = ACTIONS(1152), + [anon_sym_PLUS] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_clone] = ACTIONS(1154), + [anon_sym_print] = ACTIONS(1154), + [anon_sym_new] = ACTIONS(1154), + [anon_sym_PLUS_PLUS] = ACTIONS(1152), + [anon_sym_DASH_DASH] = ACTIONS(1152), + [sym_shell_command_expression] = ACTIONS(1152), + [anon_sym_list] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_self] = ACTIONS(1154), + [anon_sym_parent] = ACTIONS(1154), + [anon_sym_POUND_LBRACK] = ACTIONS(1152), + [sym_string] = ACTIONS(1152), + [sym_boolean] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1152), + [anon_sym_yield] = ACTIONS(1154), + [aux_sym_include_expression_token1] = ACTIONS(1154), + [aux_sym_include_once_expression_token1] = ACTIONS(1154), + [aux_sym_require_expression_token1] = ACTIONS(1154), + [aux_sym_require_once_expression_token1] = ACTIONS(1154), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1147), + [sym_heredoc] = ACTIONS(1152), }, [471] = { [sym_text_interpolation] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(1151), - [sym_name] = ACTIONS(1153), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1151), - [aux_sym_function_static_declaration_token1] = ACTIONS(1153), - [aux_sym_global_declaration_token1] = ACTIONS(1153), - [aux_sym_namespace_definition_token1] = ACTIONS(1153), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1153), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1153), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1153), - [anon_sym_BSLASH] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1151), - [aux_sym_trait_declaration_token1] = ACTIONS(1153), - [aux_sym_interface_declaration_token1] = ACTIONS(1153), - [aux_sym_class_declaration_token1] = ACTIONS(1153), - [aux_sym_class_modifier_token1] = ACTIONS(1153), - [aux_sym_class_modifier_token2] = ACTIONS(1153), - [aux_sym_visibility_modifier_token1] = ACTIONS(1153), - [aux_sym_visibility_modifier_token2] = ACTIONS(1153), - [aux_sym_visibility_modifier_token3] = ACTIONS(1153), - [aux_sym_arrow_function_token1] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_array] = ACTIONS(1153), - [anon_sym_unset] = ACTIONS(1153), - [aux_sym_echo_statement_token1] = ACTIONS(1153), - [anon_sym_declare] = ACTIONS(1153), - [aux_sym_declare_statement_token1] = ACTIONS(1153), - [sym_float] = ACTIONS(1153), - [aux_sym_try_statement_token1] = ACTIONS(1153), - [aux_sym_goto_statement_token1] = ACTIONS(1153), - [aux_sym_continue_statement_token1] = ACTIONS(1153), - [aux_sym_break_statement_token1] = ACTIONS(1153), - [sym_integer] = ACTIONS(1153), - [aux_sym_return_statement_token1] = ACTIONS(1153), - [aux_sym_throw_expression_token1] = ACTIONS(1153), - [aux_sym_while_statement_token1] = ACTIONS(1153), - [aux_sym_while_statement_token2] = ACTIONS(1153), - [aux_sym_do_statement_token1] = ACTIONS(1153), - [aux_sym_for_statement_token1] = ACTIONS(1153), - [aux_sym_for_statement_token2] = ACTIONS(1153), - [aux_sym_foreach_statement_token1] = ACTIONS(1153), - [aux_sym_foreach_statement_token2] = ACTIONS(1153), - [aux_sym_if_statement_token1] = ACTIONS(1153), - [aux_sym_if_statement_token2] = ACTIONS(1153), - [aux_sym_else_if_clause_token1] = ACTIONS(1153), - [aux_sym_else_clause_token1] = ACTIONS(1153), - [aux_sym_match_expression_token1] = ACTIONS(1153), - [aux_sym_match_default_expression_token1] = ACTIONS(1153), - [aux_sym_switch_statement_token1] = ACTIONS(1153), - [aux_sym_switch_block_token1] = ACTIONS(1153), - [aux_sym_case_statement_token1] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_clone] = ACTIONS(1153), - [anon_sym_print] = ACTIONS(1153), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [sym_shell_command_expression] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_self] = ACTIONS(1153), - [anon_sym_parent] = ACTIONS(1153), - [anon_sym_POUND_LBRACK] = ACTIONS(1151), - [sym_string] = ACTIONS(1151), - [sym_boolean] = ACTIONS(1153), - [sym_null] = ACTIONS(1153), - [anon_sym_DOLLAR] = ACTIONS(1151), - [anon_sym_yield] = ACTIONS(1153), - [aux_sym_include_expression_token1] = ACTIONS(1153), - [aux_sym_include_once_expression_token1] = ACTIONS(1153), - [aux_sym_require_expression_token1] = ACTIONS(1153), - [aux_sym_require_once_expression_token1] = ACTIONS(1153), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_name] = ACTIONS(1158), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1156), + [aux_sym_function_static_declaration_token1] = ACTIONS(1158), + [aux_sym_global_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_definition_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1158), + [anon_sym_BSLASH] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [aux_sym_trait_declaration_token1] = ACTIONS(1158), + [aux_sym_interface_declaration_token1] = ACTIONS(1158), + [aux_sym_class_declaration_token1] = ACTIONS(1158), + [aux_sym_final_modifier_token1] = ACTIONS(1158), + [aux_sym_abstract_modifier_token1] = ACTIONS(1158), + [aux_sym_visibility_modifier_token1] = ACTIONS(1158), + [aux_sym_visibility_modifier_token2] = ACTIONS(1158), + [aux_sym_visibility_modifier_token3] = ACTIONS(1158), + [aux_sym_arrow_function_token1] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_array] = ACTIONS(1158), + [anon_sym_unset] = ACTIONS(1158), + [aux_sym_echo_statement_token1] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [aux_sym_declare_statement_token1] = ACTIONS(1158), + [sym_float] = ACTIONS(1158), + [aux_sym_try_statement_token1] = ACTIONS(1158), + [aux_sym_goto_statement_token1] = ACTIONS(1158), + [aux_sym_continue_statement_token1] = ACTIONS(1158), + [aux_sym_break_statement_token1] = ACTIONS(1158), + [sym_integer] = ACTIONS(1158), + [aux_sym_return_statement_token1] = ACTIONS(1158), + [aux_sym_throw_expression_token1] = ACTIONS(1158), + [aux_sym_while_statement_token1] = ACTIONS(1158), + [aux_sym_while_statement_token2] = ACTIONS(1158), + [aux_sym_do_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token2] = ACTIONS(1158), + [aux_sym_foreach_statement_token1] = ACTIONS(1158), + [aux_sym_foreach_statement_token2] = ACTIONS(1158), + [aux_sym_if_statement_token1] = ACTIONS(1158), + [aux_sym_if_statement_token2] = ACTIONS(1158), + [aux_sym_else_if_clause_token1] = ACTIONS(1158), + [aux_sym_else_clause_token1] = ACTIONS(1158), + [aux_sym_match_expression_token1] = ACTIONS(1158), + [aux_sym_match_default_expression_token1] = ACTIONS(1158), + [aux_sym_switch_statement_token1] = ACTIONS(1158), + [aux_sym_switch_block_token1] = ACTIONS(1158), + [aux_sym_case_statement_token1] = ACTIONS(1158), + [anon_sym_AT] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_clone] = ACTIONS(1158), + [anon_sym_print] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [sym_shell_command_expression] = ACTIONS(1156), + [anon_sym_list] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_self] = ACTIONS(1158), + [anon_sym_parent] = ACTIONS(1158), + [anon_sym_POUND_LBRACK] = ACTIONS(1156), + [sym_string] = ACTIONS(1156), + [sym_boolean] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1156), + [anon_sym_yield] = ACTIONS(1158), + [aux_sym_include_expression_token1] = ACTIONS(1158), + [aux_sym_include_once_expression_token1] = ACTIONS(1158), + [aux_sym_require_expression_token1] = ACTIONS(1158), + [aux_sym_require_once_expression_token1] = ACTIONS(1158), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1151), + [sym_heredoc] = ACTIONS(1156), }, [472] = { [sym_text_interpolation] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(991), - [sym_name] = ACTIONS(993), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(991), - [aux_sym_function_static_declaration_token1] = ACTIONS(993), - [aux_sym_global_declaration_token1] = ACTIONS(993), - [aux_sym_namespace_definition_token1] = ACTIONS(993), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(993), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(993), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(993), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [aux_sym_trait_declaration_token1] = ACTIONS(993), - [aux_sym_interface_declaration_token1] = ACTIONS(993), - [aux_sym_class_declaration_token1] = ACTIONS(993), - [aux_sym_class_modifier_token1] = ACTIONS(993), - [aux_sym_class_modifier_token2] = ACTIONS(993), - [aux_sym_visibility_modifier_token1] = ACTIONS(993), - [aux_sym_visibility_modifier_token2] = ACTIONS(993), - [aux_sym_visibility_modifier_token3] = ACTIONS(993), - [aux_sym_arrow_function_token1] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_array] = ACTIONS(993), - [anon_sym_unset] = ACTIONS(993), - [aux_sym_echo_statement_token1] = ACTIONS(993), - [anon_sym_declare] = ACTIONS(993), - [aux_sym_declare_statement_token1] = ACTIONS(993), - [sym_float] = ACTIONS(993), - [aux_sym_try_statement_token1] = ACTIONS(993), - [aux_sym_goto_statement_token1] = ACTIONS(993), - [aux_sym_continue_statement_token1] = ACTIONS(993), - [aux_sym_break_statement_token1] = ACTIONS(993), - [sym_integer] = ACTIONS(993), - [aux_sym_return_statement_token1] = ACTIONS(993), - [aux_sym_throw_expression_token1] = ACTIONS(993), - [aux_sym_while_statement_token1] = ACTIONS(993), - [aux_sym_while_statement_token2] = ACTIONS(993), - [aux_sym_do_statement_token1] = ACTIONS(993), - [aux_sym_for_statement_token1] = ACTIONS(993), - [aux_sym_for_statement_token2] = ACTIONS(993), - [aux_sym_foreach_statement_token1] = ACTIONS(993), - [aux_sym_foreach_statement_token2] = ACTIONS(993), - [aux_sym_if_statement_token1] = ACTIONS(993), - [aux_sym_if_statement_token2] = ACTIONS(993), - [aux_sym_else_if_clause_token1] = ACTIONS(993), - [aux_sym_else_clause_token1] = ACTIONS(993), - [aux_sym_match_expression_token1] = ACTIONS(993), - [aux_sym_match_default_expression_token1] = ACTIONS(993), - [aux_sym_switch_statement_token1] = ACTIONS(993), - [aux_sym_switch_block_token1] = ACTIONS(993), - [aux_sym_case_statement_token1] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_clone] = ACTIONS(993), - [anon_sym_print] = ACTIONS(993), - [anon_sym_new] = ACTIONS(993), - [anon_sym_PLUS_PLUS] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(991), - [sym_shell_command_expression] = ACTIONS(991), - [anon_sym_list] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_self] = ACTIONS(993), - [anon_sym_parent] = ACTIONS(993), - [anon_sym_POUND_LBRACK] = ACTIONS(991), - [sym_string] = ACTIONS(991), - [sym_boolean] = ACTIONS(993), - [sym_null] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(993), - [aux_sym_include_expression_token1] = ACTIONS(993), - [aux_sym_include_once_expression_token1] = ACTIONS(993), - [aux_sym_require_expression_token1] = ACTIONS(993), - [aux_sym_require_once_expression_token1] = ACTIONS(993), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_name] = ACTIONS(1158), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1156), + [aux_sym_function_static_declaration_token1] = ACTIONS(1158), + [aux_sym_global_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_definition_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1158), + [anon_sym_BSLASH] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [aux_sym_trait_declaration_token1] = ACTIONS(1158), + [aux_sym_interface_declaration_token1] = ACTIONS(1158), + [aux_sym_class_declaration_token1] = ACTIONS(1158), + [aux_sym_final_modifier_token1] = ACTIONS(1158), + [aux_sym_abstract_modifier_token1] = ACTIONS(1158), + [aux_sym_visibility_modifier_token1] = ACTIONS(1158), + [aux_sym_visibility_modifier_token2] = ACTIONS(1158), + [aux_sym_visibility_modifier_token3] = ACTIONS(1158), + [aux_sym_arrow_function_token1] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_array] = ACTIONS(1158), + [anon_sym_unset] = ACTIONS(1158), + [aux_sym_echo_statement_token1] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [aux_sym_declare_statement_token1] = ACTIONS(1158), + [sym_float] = ACTIONS(1158), + [aux_sym_try_statement_token1] = ACTIONS(1158), + [aux_sym_goto_statement_token1] = ACTIONS(1158), + [aux_sym_continue_statement_token1] = ACTIONS(1158), + [aux_sym_break_statement_token1] = ACTIONS(1158), + [sym_integer] = ACTIONS(1158), + [aux_sym_return_statement_token1] = ACTIONS(1158), + [aux_sym_throw_expression_token1] = ACTIONS(1158), + [aux_sym_while_statement_token1] = ACTIONS(1158), + [aux_sym_while_statement_token2] = ACTIONS(1158), + [aux_sym_do_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token2] = ACTIONS(1158), + [aux_sym_foreach_statement_token1] = ACTIONS(1158), + [aux_sym_foreach_statement_token2] = ACTIONS(1158), + [aux_sym_if_statement_token1] = ACTIONS(1158), + [aux_sym_if_statement_token2] = ACTIONS(1158), + [aux_sym_else_if_clause_token1] = ACTIONS(1158), + [aux_sym_else_clause_token1] = ACTIONS(1158), + [aux_sym_match_expression_token1] = ACTIONS(1158), + [aux_sym_match_default_expression_token1] = ACTIONS(1158), + [aux_sym_switch_statement_token1] = ACTIONS(1158), + [aux_sym_switch_block_token1] = ACTIONS(1158), + [aux_sym_case_statement_token1] = ACTIONS(1158), + [anon_sym_AT] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_clone] = ACTIONS(1158), + [anon_sym_print] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1158), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [sym_shell_command_expression] = ACTIONS(1156), + [anon_sym_list] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_self] = ACTIONS(1158), + [anon_sym_parent] = ACTIONS(1158), + [anon_sym_POUND_LBRACK] = ACTIONS(1156), + [sym_string] = ACTIONS(1156), + [sym_boolean] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1156), + [anon_sym_yield] = ACTIONS(1158), + [aux_sym_include_expression_token1] = ACTIONS(1158), + [aux_sym_include_once_expression_token1] = ACTIONS(1158), + [aux_sym_require_expression_token1] = ACTIONS(1158), + [aux_sym_require_once_expression_token1] = ACTIONS(1158), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(991), + [sym_heredoc] = ACTIONS(1156), }, [473] = { [sym_text_interpolation] = STATE(473), - [ts_builtin_sym_end] = ACTIONS(1155), - [sym_name] = ACTIONS(1157), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1155), - [aux_sym_function_static_declaration_token1] = ACTIONS(1157), - [aux_sym_global_declaration_token1] = ACTIONS(1157), - [aux_sym_namespace_definition_token1] = ACTIONS(1157), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1157), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1157), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1157), - [anon_sym_BSLASH] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_RBRACE] = ACTIONS(1155), - [aux_sym_trait_declaration_token1] = ACTIONS(1157), - [aux_sym_interface_declaration_token1] = ACTIONS(1157), - [aux_sym_class_declaration_token1] = ACTIONS(1157), - [aux_sym_class_modifier_token1] = ACTIONS(1157), - [aux_sym_class_modifier_token2] = ACTIONS(1157), - [aux_sym_visibility_modifier_token1] = ACTIONS(1157), - [aux_sym_visibility_modifier_token2] = ACTIONS(1157), - [aux_sym_visibility_modifier_token3] = ACTIONS(1157), - [aux_sym_arrow_function_token1] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1157), - [anon_sym_unset] = ACTIONS(1157), - [aux_sym_echo_statement_token1] = ACTIONS(1157), - [anon_sym_declare] = ACTIONS(1157), - [aux_sym_declare_statement_token1] = ACTIONS(1157), - [sym_float] = ACTIONS(1157), - [aux_sym_try_statement_token1] = ACTIONS(1157), - [aux_sym_goto_statement_token1] = ACTIONS(1157), - [aux_sym_continue_statement_token1] = ACTIONS(1157), - [aux_sym_break_statement_token1] = ACTIONS(1157), - [sym_integer] = ACTIONS(1157), - [aux_sym_return_statement_token1] = ACTIONS(1157), - [aux_sym_throw_expression_token1] = ACTIONS(1157), - [aux_sym_while_statement_token1] = ACTIONS(1157), - [aux_sym_while_statement_token2] = ACTIONS(1157), - [aux_sym_do_statement_token1] = ACTIONS(1157), - [aux_sym_for_statement_token1] = ACTIONS(1157), - [aux_sym_for_statement_token2] = ACTIONS(1157), - [aux_sym_foreach_statement_token1] = ACTIONS(1157), - [aux_sym_foreach_statement_token2] = ACTIONS(1157), - [aux_sym_if_statement_token1] = ACTIONS(1157), - [aux_sym_if_statement_token2] = ACTIONS(1157), - [aux_sym_else_if_clause_token1] = ACTIONS(1157), - [aux_sym_else_clause_token1] = ACTIONS(1157), - [aux_sym_match_expression_token1] = ACTIONS(1157), - [aux_sym_match_default_expression_token1] = ACTIONS(1157), - [aux_sym_switch_statement_token1] = ACTIONS(1157), - [aux_sym_switch_block_token1] = ACTIONS(1157), - [aux_sym_case_statement_token1] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_clone] = ACTIONS(1157), - [anon_sym_print] = ACTIONS(1157), - [anon_sym_new] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [sym_shell_command_expression] = ACTIONS(1155), - [anon_sym_list] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1155), - [anon_sym_self] = ACTIONS(1157), - [anon_sym_parent] = ACTIONS(1157), - [anon_sym_POUND_LBRACK] = ACTIONS(1155), - [sym_string] = ACTIONS(1155), - [sym_boolean] = ACTIONS(1157), - [sym_null] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(1157), - [aux_sym_include_expression_token1] = ACTIONS(1157), - [aux_sym_include_once_expression_token1] = ACTIONS(1157), - [aux_sym_require_expression_token1] = ACTIONS(1157), - [aux_sym_require_once_expression_token1] = ACTIONS(1157), + [ts_builtin_sym_end] = ACTIONS(996), + [sym_name] = ACTIONS(998), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(996), + [aux_sym_function_static_declaration_token1] = ACTIONS(998), + [aux_sym_global_declaration_token1] = ACTIONS(998), + [aux_sym_namespace_definition_token1] = ACTIONS(998), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(998), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(998), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(998), + [anon_sym_BSLASH] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [aux_sym_trait_declaration_token1] = ACTIONS(998), + [aux_sym_interface_declaration_token1] = ACTIONS(998), + [aux_sym_class_declaration_token1] = ACTIONS(998), + [aux_sym_final_modifier_token1] = ACTIONS(998), + [aux_sym_abstract_modifier_token1] = ACTIONS(998), + [aux_sym_visibility_modifier_token1] = ACTIONS(998), + [aux_sym_visibility_modifier_token2] = ACTIONS(998), + [aux_sym_visibility_modifier_token3] = ACTIONS(998), + [aux_sym_arrow_function_token1] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_array] = ACTIONS(998), + [anon_sym_unset] = ACTIONS(998), + [aux_sym_echo_statement_token1] = ACTIONS(998), + [anon_sym_declare] = ACTIONS(998), + [aux_sym_declare_statement_token1] = ACTIONS(998), + [sym_float] = ACTIONS(998), + [aux_sym_try_statement_token1] = ACTIONS(998), + [aux_sym_goto_statement_token1] = ACTIONS(998), + [aux_sym_continue_statement_token1] = ACTIONS(998), + [aux_sym_break_statement_token1] = ACTIONS(998), + [sym_integer] = ACTIONS(998), + [aux_sym_return_statement_token1] = ACTIONS(998), + [aux_sym_throw_expression_token1] = ACTIONS(998), + [aux_sym_while_statement_token1] = ACTIONS(998), + [aux_sym_while_statement_token2] = ACTIONS(998), + [aux_sym_do_statement_token1] = ACTIONS(998), + [aux_sym_for_statement_token1] = ACTIONS(998), + [aux_sym_for_statement_token2] = ACTIONS(998), + [aux_sym_foreach_statement_token1] = ACTIONS(998), + [aux_sym_foreach_statement_token2] = ACTIONS(998), + [aux_sym_if_statement_token1] = ACTIONS(998), + [aux_sym_if_statement_token2] = ACTIONS(998), + [aux_sym_else_if_clause_token1] = ACTIONS(998), + [aux_sym_else_clause_token1] = ACTIONS(998), + [aux_sym_match_expression_token1] = ACTIONS(998), + [aux_sym_match_default_expression_token1] = ACTIONS(998), + [aux_sym_switch_statement_token1] = ACTIONS(998), + [aux_sym_switch_block_token1] = ACTIONS(998), + [aux_sym_case_statement_token1] = ACTIONS(998), + [anon_sym_AT] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_clone] = ACTIONS(998), + [anon_sym_print] = ACTIONS(998), + [anon_sym_new] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(996), + [sym_shell_command_expression] = ACTIONS(996), + [anon_sym_list] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_self] = ACTIONS(998), + [anon_sym_parent] = ACTIONS(998), + [anon_sym_POUND_LBRACK] = ACTIONS(996), + [sym_string] = ACTIONS(996), + [sym_boolean] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_yield] = ACTIONS(998), + [aux_sym_include_expression_token1] = ACTIONS(998), + [aux_sym_include_once_expression_token1] = ACTIONS(998), + [aux_sym_require_expression_token1] = ACTIONS(998), + [aux_sym_require_once_expression_token1] = ACTIONS(998), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1155), + [sym_heredoc] = ACTIONS(996), }, [474] = { [sym_text_interpolation] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(1159), - [sym_name] = ACTIONS(1161), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1159), - [aux_sym_function_static_declaration_token1] = ACTIONS(1161), - [aux_sym_global_declaration_token1] = ACTIONS(1161), - [aux_sym_namespace_definition_token1] = ACTIONS(1161), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1161), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1161), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1161), - [anon_sym_BSLASH] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1159), - [aux_sym_trait_declaration_token1] = ACTIONS(1161), - [aux_sym_interface_declaration_token1] = ACTIONS(1161), - [aux_sym_class_declaration_token1] = ACTIONS(1161), - [aux_sym_class_modifier_token1] = ACTIONS(1161), - [aux_sym_class_modifier_token2] = ACTIONS(1161), - [aux_sym_visibility_modifier_token1] = ACTIONS(1161), - [aux_sym_visibility_modifier_token2] = ACTIONS(1161), - [aux_sym_visibility_modifier_token3] = ACTIONS(1161), - [aux_sym_arrow_function_token1] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1159), - [anon_sym_array] = ACTIONS(1161), - [anon_sym_unset] = ACTIONS(1161), - [aux_sym_echo_statement_token1] = ACTIONS(1161), - [anon_sym_declare] = ACTIONS(1161), - [aux_sym_declare_statement_token1] = ACTIONS(1161), - [sym_float] = ACTIONS(1161), - [aux_sym_try_statement_token1] = ACTIONS(1161), - [aux_sym_goto_statement_token1] = ACTIONS(1161), - [aux_sym_continue_statement_token1] = ACTIONS(1161), - [aux_sym_break_statement_token1] = ACTIONS(1161), - [sym_integer] = ACTIONS(1161), - [aux_sym_return_statement_token1] = ACTIONS(1161), - [aux_sym_throw_expression_token1] = ACTIONS(1161), - [aux_sym_while_statement_token1] = ACTIONS(1161), - [aux_sym_while_statement_token2] = ACTIONS(1161), - [aux_sym_do_statement_token1] = ACTIONS(1161), - [aux_sym_for_statement_token1] = ACTIONS(1161), - [aux_sym_for_statement_token2] = ACTIONS(1161), - [aux_sym_foreach_statement_token1] = ACTIONS(1161), - [aux_sym_foreach_statement_token2] = ACTIONS(1161), - [aux_sym_if_statement_token1] = ACTIONS(1161), - [aux_sym_if_statement_token2] = ACTIONS(1161), - [aux_sym_else_if_clause_token1] = ACTIONS(1161), - [aux_sym_else_clause_token1] = ACTIONS(1161), - [aux_sym_match_expression_token1] = ACTIONS(1161), - [aux_sym_match_default_expression_token1] = ACTIONS(1161), - [aux_sym_switch_statement_token1] = ACTIONS(1161), - [aux_sym_switch_block_token1] = ACTIONS(1161), - [aux_sym_case_statement_token1] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_clone] = ACTIONS(1161), - [anon_sym_print] = ACTIONS(1161), - [anon_sym_new] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [sym_shell_command_expression] = ACTIONS(1159), - [anon_sym_list] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_self] = ACTIONS(1161), - [anon_sym_parent] = ACTIONS(1161), - [anon_sym_POUND_LBRACK] = ACTIONS(1159), - [sym_string] = ACTIONS(1159), - [sym_boolean] = ACTIONS(1161), - [sym_null] = ACTIONS(1161), - [anon_sym_DOLLAR] = ACTIONS(1159), - [anon_sym_yield] = ACTIONS(1161), - [aux_sym_include_expression_token1] = ACTIONS(1161), - [aux_sym_include_once_expression_token1] = ACTIONS(1161), - [aux_sym_require_expression_token1] = ACTIONS(1161), - [aux_sym_require_once_expression_token1] = ACTIONS(1161), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_name] = ACTIONS(1162), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1160), + [aux_sym_function_static_declaration_token1] = ACTIONS(1162), + [aux_sym_global_declaration_token1] = ACTIONS(1162), + [aux_sym_namespace_definition_token1] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1162), + [anon_sym_BSLASH] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [aux_sym_trait_declaration_token1] = ACTIONS(1162), + [aux_sym_interface_declaration_token1] = ACTIONS(1162), + [aux_sym_class_declaration_token1] = ACTIONS(1162), + [aux_sym_final_modifier_token1] = ACTIONS(1162), + [aux_sym_abstract_modifier_token1] = ACTIONS(1162), + [aux_sym_visibility_modifier_token1] = ACTIONS(1162), + [aux_sym_visibility_modifier_token2] = ACTIONS(1162), + [aux_sym_visibility_modifier_token3] = ACTIONS(1162), + [aux_sym_arrow_function_token1] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_array] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1162), + [aux_sym_echo_statement_token1] = ACTIONS(1162), + [anon_sym_declare] = ACTIONS(1162), + [aux_sym_declare_statement_token1] = ACTIONS(1162), + [sym_float] = ACTIONS(1162), + [aux_sym_try_statement_token1] = ACTIONS(1162), + [aux_sym_goto_statement_token1] = ACTIONS(1162), + [aux_sym_continue_statement_token1] = ACTIONS(1162), + [aux_sym_break_statement_token1] = ACTIONS(1162), + [sym_integer] = ACTIONS(1162), + [aux_sym_return_statement_token1] = ACTIONS(1162), + [aux_sym_throw_expression_token1] = ACTIONS(1162), + [aux_sym_while_statement_token1] = ACTIONS(1162), + [aux_sym_while_statement_token2] = ACTIONS(1162), + [aux_sym_do_statement_token1] = ACTIONS(1162), + [aux_sym_for_statement_token1] = ACTIONS(1162), + [aux_sym_for_statement_token2] = ACTIONS(1162), + [aux_sym_foreach_statement_token1] = ACTIONS(1162), + [aux_sym_foreach_statement_token2] = ACTIONS(1162), + [aux_sym_if_statement_token1] = ACTIONS(1162), + [aux_sym_if_statement_token2] = ACTIONS(1162), + [aux_sym_else_if_clause_token1] = ACTIONS(1162), + [aux_sym_else_clause_token1] = ACTIONS(1162), + [aux_sym_match_expression_token1] = ACTIONS(1162), + [aux_sym_match_default_expression_token1] = ACTIONS(1162), + [aux_sym_switch_statement_token1] = ACTIONS(1162), + [aux_sym_switch_block_token1] = ACTIONS(1162), + [aux_sym_case_statement_token1] = ACTIONS(1162), + [anon_sym_AT] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_clone] = ACTIONS(1162), + [anon_sym_print] = ACTIONS(1162), + [anon_sym_new] = ACTIONS(1162), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [sym_shell_command_expression] = ACTIONS(1160), + [anon_sym_list] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_self] = ACTIONS(1162), + [anon_sym_parent] = ACTIONS(1162), + [anon_sym_POUND_LBRACK] = ACTIONS(1160), + [sym_string] = ACTIONS(1160), + [sym_boolean] = ACTIONS(1162), + [sym_null] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1162), + [aux_sym_include_expression_token1] = ACTIONS(1162), + [aux_sym_include_once_expression_token1] = ACTIONS(1162), + [aux_sym_require_expression_token1] = ACTIONS(1162), + [aux_sym_require_once_expression_token1] = ACTIONS(1162), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1159), + [sym_heredoc] = ACTIONS(1160), }, [475] = { [sym_text_interpolation] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1155), - [sym_name] = ACTIONS(1157), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1155), - [aux_sym_function_static_declaration_token1] = ACTIONS(1157), - [aux_sym_global_declaration_token1] = ACTIONS(1157), - [aux_sym_namespace_definition_token1] = ACTIONS(1157), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1157), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1157), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1157), - [anon_sym_BSLASH] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_RBRACE] = ACTIONS(1155), - [aux_sym_trait_declaration_token1] = ACTIONS(1157), - [aux_sym_interface_declaration_token1] = ACTIONS(1157), - [aux_sym_class_declaration_token1] = ACTIONS(1157), - [aux_sym_class_modifier_token1] = ACTIONS(1157), - [aux_sym_class_modifier_token2] = ACTIONS(1157), - [aux_sym_visibility_modifier_token1] = ACTIONS(1157), - [aux_sym_visibility_modifier_token2] = ACTIONS(1157), - [aux_sym_visibility_modifier_token3] = ACTIONS(1157), - [aux_sym_arrow_function_token1] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1157), - [anon_sym_unset] = ACTIONS(1157), - [aux_sym_echo_statement_token1] = ACTIONS(1157), - [anon_sym_declare] = ACTIONS(1157), - [aux_sym_declare_statement_token1] = ACTIONS(1157), - [sym_float] = ACTIONS(1157), - [aux_sym_try_statement_token1] = ACTIONS(1157), - [aux_sym_goto_statement_token1] = ACTIONS(1157), - [aux_sym_continue_statement_token1] = ACTIONS(1157), - [aux_sym_break_statement_token1] = ACTIONS(1157), - [sym_integer] = ACTIONS(1157), - [aux_sym_return_statement_token1] = ACTIONS(1157), - [aux_sym_throw_expression_token1] = ACTIONS(1157), - [aux_sym_while_statement_token1] = ACTIONS(1157), - [aux_sym_while_statement_token2] = ACTIONS(1157), - [aux_sym_do_statement_token1] = ACTIONS(1157), - [aux_sym_for_statement_token1] = ACTIONS(1157), - [aux_sym_for_statement_token2] = ACTIONS(1157), - [aux_sym_foreach_statement_token1] = ACTIONS(1157), - [aux_sym_foreach_statement_token2] = ACTIONS(1157), - [aux_sym_if_statement_token1] = ACTIONS(1157), - [aux_sym_if_statement_token2] = ACTIONS(1157), - [aux_sym_else_if_clause_token1] = ACTIONS(1157), - [aux_sym_else_clause_token1] = ACTIONS(1157), - [aux_sym_match_expression_token1] = ACTIONS(1157), - [aux_sym_match_default_expression_token1] = ACTIONS(1157), - [aux_sym_switch_statement_token1] = ACTIONS(1157), - [aux_sym_switch_block_token1] = ACTIONS(1157), - [aux_sym_case_statement_token1] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_clone] = ACTIONS(1157), - [anon_sym_print] = ACTIONS(1157), - [anon_sym_new] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [sym_shell_command_expression] = ACTIONS(1155), - [anon_sym_list] = ACTIONS(1157), - [anon_sym_LBRACK] = ACTIONS(1155), - [anon_sym_self] = ACTIONS(1157), - [anon_sym_parent] = ACTIONS(1157), - [anon_sym_POUND_LBRACK] = ACTIONS(1155), - [sym_string] = ACTIONS(1155), - [sym_boolean] = ACTIONS(1157), - [sym_null] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(1157), - [aux_sym_include_expression_token1] = ACTIONS(1157), - [aux_sym_include_once_expression_token1] = ACTIONS(1157), - [aux_sym_require_expression_token1] = ACTIONS(1157), - [aux_sym_require_once_expression_token1] = ACTIONS(1157), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_name] = ACTIONS(1166), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1164), + [aux_sym_function_static_declaration_token1] = ACTIONS(1166), + [aux_sym_global_declaration_token1] = ACTIONS(1166), + [aux_sym_namespace_definition_token1] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1166), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1166), + [anon_sym_BSLASH] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [aux_sym_trait_declaration_token1] = ACTIONS(1166), + [aux_sym_interface_declaration_token1] = ACTIONS(1166), + [aux_sym_class_declaration_token1] = ACTIONS(1166), + [aux_sym_final_modifier_token1] = ACTIONS(1166), + [aux_sym_abstract_modifier_token1] = ACTIONS(1166), + [aux_sym_visibility_modifier_token1] = ACTIONS(1166), + [aux_sym_visibility_modifier_token2] = ACTIONS(1166), + [aux_sym_visibility_modifier_token3] = ACTIONS(1166), + [aux_sym_arrow_function_token1] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_array] = ACTIONS(1166), + [anon_sym_unset] = ACTIONS(1166), + [aux_sym_echo_statement_token1] = ACTIONS(1166), + [anon_sym_declare] = ACTIONS(1166), + [aux_sym_declare_statement_token1] = ACTIONS(1166), + [sym_float] = ACTIONS(1166), + [aux_sym_try_statement_token1] = ACTIONS(1166), + [aux_sym_goto_statement_token1] = ACTIONS(1166), + [aux_sym_continue_statement_token1] = ACTIONS(1166), + [aux_sym_break_statement_token1] = ACTIONS(1166), + [sym_integer] = ACTIONS(1166), + [aux_sym_return_statement_token1] = ACTIONS(1166), + [aux_sym_throw_expression_token1] = ACTIONS(1166), + [aux_sym_while_statement_token1] = ACTIONS(1166), + [aux_sym_while_statement_token2] = ACTIONS(1166), + [aux_sym_do_statement_token1] = ACTIONS(1166), + [aux_sym_for_statement_token1] = ACTIONS(1166), + [aux_sym_for_statement_token2] = ACTIONS(1166), + [aux_sym_foreach_statement_token1] = ACTIONS(1166), + [aux_sym_foreach_statement_token2] = ACTIONS(1166), + [aux_sym_if_statement_token1] = ACTIONS(1166), + [aux_sym_if_statement_token2] = ACTIONS(1166), + [aux_sym_else_if_clause_token1] = ACTIONS(1166), + [aux_sym_else_clause_token1] = ACTIONS(1166), + [aux_sym_match_expression_token1] = ACTIONS(1166), + [aux_sym_match_default_expression_token1] = ACTIONS(1166), + [aux_sym_switch_statement_token1] = ACTIONS(1166), + [aux_sym_switch_block_token1] = ACTIONS(1166), + [aux_sym_case_statement_token1] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_PLUS] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_clone] = ACTIONS(1166), + [anon_sym_print] = ACTIONS(1166), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_PLUS_PLUS] = ACTIONS(1164), + [anon_sym_DASH_DASH] = ACTIONS(1164), + [sym_shell_command_expression] = ACTIONS(1164), + [anon_sym_list] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_self] = ACTIONS(1166), + [anon_sym_parent] = ACTIONS(1166), + [anon_sym_POUND_LBRACK] = ACTIONS(1164), + [sym_string] = ACTIONS(1164), + [sym_boolean] = ACTIONS(1166), + [sym_null] = ACTIONS(1166), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [aux_sym_include_expression_token1] = ACTIONS(1166), + [aux_sym_include_once_expression_token1] = ACTIONS(1166), + [aux_sym_require_expression_token1] = ACTIONS(1166), + [aux_sym_require_once_expression_token1] = ACTIONS(1166), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1155), + [sym_heredoc] = ACTIONS(1164), }, [476] = { [sym_text_interpolation] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(1163), - [sym_name] = ACTIONS(1165), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1163), - [aux_sym_function_static_declaration_token1] = ACTIONS(1165), - [aux_sym_global_declaration_token1] = ACTIONS(1165), - [aux_sym_namespace_definition_token1] = ACTIONS(1165), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1165), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1165), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1165), - [anon_sym_BSLASH] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_RBRACE] = ACTIONS(1163), - [aux_sym_trait_declaration_token1] = ACTIONS(1165), - [aux_sym_interface_declaration_token1] = ACTIONS(1165), - [aux_sym_class_declaration_token1] = ACTIONS(1165), - [aux_sym_class_modifier_token1] = ACTIONS(1165), - [aux_sym_class_modifier_token2] = ACTIONS(1165), - [aux_sym_visibility_modifier_token1] = ACTIONS(1165), - [aux_sym_visibility_modifier_token2] = ACTIONS(1165), - [aux_sym_visibility_modifier_token3] = ACTIONS(1165), - [aux_sym_arrow_function_token1] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_array] = ACTIONS(1165), - [anon_sym_unset] = ACTIONS(1165), - [aux_sym_echo_statement_token1] = ACTIONS(1165), - [anon_sym_declare] = ACTIONS(1165), - [aux_sym_declare_statement_token1] = ACTIONS(1165), - [sym_float] = ACTIONS(1165), - [aux_sym_try_statement_token1] = ACTIONS(1165), - [aux_sym_goto_statement_token1] = ACTIONS(1165), - [aux_sym_continue_statement_token1] = ACTIONS(1165), - [aux_sym_break_statement_token1] = ACTIONS(1165), - [sym_integer] = ACTIONS(1165), - [aux_sym_return_statement_token1] = ACTIONS(1165), - [aux_sym_throw_expression_token1] = ACTIONS(1165), - [aux_sym_while_statement_token1] = ACTIONS(1165), - [aux_sym_while_statement_token2] = ACTIONS(1165), - [aux_sym_do_statement_token1] = ACTIONS(1165), - [aux_sym_for_statement_token1] = ACTIONS(1165), - [aux_sym_for_statement_token2] = ACTIONS(1165), - [aux_sym_foreach_statement_token1] = ACTIONS(1165), - [aux_sym_foreach_statement_token2] = ACTIONS(1165), - [aux_sym_if_statement_token1] = ACTIONS(1165), - [aux_sym_if_statement_token2] = ACTIONS(1165), - [aux_sym_else_if_clause_token1] = ACTIONS(1165), - [aux_sym_else_clause_token1] = ACTIONS(1165), - [aux_sym_match_expression_token1] = ACTIONS(1165), - [aux_sym_match_default_expression_token1] = ACTIONS(1165), - [aux_sym_switch_statement_token1] = ACTIONS(1165), - [aux_sym_switch_block_token1] = ACTIONS(1165), - [aux_sym_case_statement_token1] = ACTIONS(1165), - [anon_sym_AT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_clone] = ACTIONS(1165), - [anon_sym_print] = ACTIONS(1165), - [anon_sym_new] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_shell_command_expression] = ACTIONS(1163), - [anon_sym_list] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1163), - [anon_sym_self] = ACTIONS(1165), - [anon_sym_parent] = ACTIONS(1165), - [anon_sym_POUND_LBRACK] = ACTIONS(1163), - [sym_string] = ACTIONS(1163), - [sym_boolean] = ACTIONS(1165), - [sym_null] = ACTIONS(1165), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_yield] = ACTIONS(1165), - [aux_sym_include_expression_token1] = ACTIONS(1165), - [aux_sym_include_once_expression_token1] = ACTIONS(1165), - [aux_sym_require_expression_token1] = ACTIONS(1165), - [aux_sym_require_once_expression_token1] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_name] = ACTIONS(1170), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1168), + [aux_sym_function_static_declaration_token1] = ACTIONS(1170), + [aux_sym_global_declaration_token1] = ACTIONS(1170), + [aux_sym_namespace_definition_token1] = ACTIONS(1170), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1170), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1170), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1170), + [anon_sym_BSLASH] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [aux_sym_trait_declaration_token1] = ACTIONS(1170), + [aux_sym_interface_declaration_token1] = ACTIONS(1170), + [aux_sym_class_declaration_token1] = ACTIONS(1170), + [aux_sym_final_modifier_token1] = ACTIONS(1170), + [aux_sym_abstract_modifier_token1] = ACTIONS(1170), + [aux_sym_visibility_modifier_token1] = ACTIONS(1170), + [aux_sym_visibility_modifier_token2] = ACTIONS(1170), + [aux_sym_visibility_modifier_token3] = ACTIONS(1170), + [aux_sym_arrow_function_token1] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_array] = ACTIONS(1170), + [anon_sym_unset] = ACTIONS(1170), + [aux_sym_echo_statement_token1] = ACTIONS(1170), + [anon_sym_declare] = ACTIONS(1170), + [aux_sym_declare_statement_token1] = ACTIONS(1170), + [sym_float] = ACTIONS(1170), + [aux_sym_try_statement_token1] = ACTIONS(1170), + [aux_sym_goto_statement_token1] = ACTIONS(1170), + [aux_sym_continue_statement_token1] = ACTIONS(1170), + [aux_sym_break_statement_token1] = ACTIONS(1170), + [sym_integer] = ACTIONS(1170), + [aux_sym_return_statement_token1] = ACTIONS(1170), + [aux_sym_throw_expression_token1] = ACTIONS(1170), + [aux_sym_while_statement_token1] = ACTIONS(1170), + [aux_sym_while_statement_token2] = ACTIONS(1170), + [aux_sym_do_statement_token1] = ACTIONS(1170), + [aux_sym_for_statement_token1] = ACTIONS(1170), + [aux_sym_for_statement_token2] = ACTIONS(1170), + [aux_sym_foreach_statement_token1] = ACTIONS(1170), + [aux_sym_foreach_statement_token2] = ACTIONS(1170), + [aux_sym_if_statement_token1] = ACTIONS(1170), + [aux_sym_if_statement_token2] = ACTIONS(1170), + [aux_sym_else_if_clause_token1] = ACTIONS(1170), + [aux_sym_else_clause_token1] = ACTIONS(1170), + [aux_sym_match_expression_token1] = ACTIONS(1170), + [aux_sym_match_default_expression_token1] = ACTIONS(1170), + [aux_sym_switch_statement_token1] = ACTIONS(1170), + [aux_sym_switch_block_token1] = ACTIONS(1170), + [aux_sym_case_statement_token1] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_TILDE] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_clone] = ACTIONS(1170), + [anon_sym_print] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_DASH_DASH] = ACTIONS(1168), + [sym_shell_command_expression] = ACTIONS(1168), + [anon_sym_list] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_self] = ACTIONS(1170), + [anon_sym_parent] = ACTIONS(1170), + [anon_sym_POUND_LBRACK] = ACTIONS(1168), + [sym_string] = ACTIONS(1168), + [sym_boolean] = ACTIONS(1170), + [sym_null] = ACTIONS(1170), + [anon_sym_DOLLAR] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [aux_sym_include_expression_token1] = ACTIONS(1170), + [aux_sym_include_once_expression_token1] = ACTIONS(1170), + [aux_sym_require_expression_token1] = ACTIONS(1170), + [aux_sym_require_once_expression_token1] = ACTIONS(1170), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1163), + [sym_heredoc] = ACTIONS(1168), }, [477] = { [sym_text_interpolation] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_name] = ACTIONS(1169), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1167), - [aux_sym_function_static_declaration_token1] = ACTIONS(1169), - [aux_sym_global_declaration_token1] = ACTIONS(1169), - [aux_sym_namespace_definition_token1] = ACTIONS(1169), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1169), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1169), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1169), - [anon_sym_BSLASH] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [aux_sym_trait_declaration_token1] = ACTIONS(1169), - [aux_sym_interface_declaration_token1] = ACTIONS(1169), - [aux_sym_class_declaration_token1] = ACTIONS(1169), - [aux_sym_class_modifier_token1] = ACTIONS(1169), - [aux_sym_class_modifier_token2] = ACTIONS(1169), - [aux_sym_visibility_modifier_token1] = ACTIONS(1169), - [aux_sym_visibility_modifier_token2] = ACTIONS(1169), - [aux_sym_visibility_modifier_token3] = ACTIONS(1169), - [aux_sym_arrow_function_token1] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1167), - [anon_sym_array] = ACTIONS(1169), - [anon_sym_unset] = ACTIONS(1169), - [aux_sym_echo_statement_token1] = ACTIONS(1169), - [anon_sym_declare] = ACTIONS(1169), - [aux_sym_declare_statement_token1] = ACTIONS(1169), - [sym_float] = ACTIONS(1169), - [aux_sym_try_statement_token1] = ACTIONS(1169), - [aux_sym_goto_statement_token1] = ACTIONS(1169), - [aux_sym_continue_statement_token1] = ACTIONS(1169), - [aux_sym_break_statement_token1] = ACTIONS(1169), - [sym_integer] = ACTIONS(1169), - [aux_sym_return_statement_token1] = ACTIONS(1169), - [aux_sym_throw_expression_token1] = ACTIONS(1169), - [aux_sym_while_statement_token1] = ACTIONS(1169), - [aux_sym_while_statement_token2] = ACTIONS(1169), - [aux_sym_do_statement_token1] = ACTIONS(1169), - [aux_sym_for_statement_token1] = ACTIONS(1169), - [aux_sym_for_statement_token2] = ACTIONS(1169), - [aux_sym_foreach_statement_token1] = ACTIONS(1169), - [aux_sym_foreach_statement_token2] = ACTIONS(1169), - [aux_sym_if_statement_token1] = ACTIONS(1169), - [aux_sym_if_statement_token2] = ACTIONS(1169), - [aux_sym_else_if_clause_token1] = ACTIONS(1169), - [aux_sym_else_clause_token1] = ACTIONS(1169), - [aux_sym_match_expression_token1] = ACTIONS(1169), - [aux_sym_match_default_expression_token1] = ACTIONS(1169), - [aux_sym_switch_statement_token1] = ACTIONS(1169), - [aux_sym_switch_block_token1] = ACTIONS(1169), - [aux_sym_case_statement_token1] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_clone] = ACTIONS(1169), - [anon_sym_print] = ACTIONS(1169), - [anon_sym_new] = ACTIONS(1169), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [sym_shell_command_expression] = ACTIONS(1167), - [anon_sym_list] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_self] = ACTIONS(1169), - [anon_sym_parent] = ACTIONS(1169), - [anon_sym_POUND_LBRACK] = ACTIONS(1167), - [sym_string] = ACTIONS(1167), - [sym_boolean] = ACTIONS(1169), - [sym_null] = ACTIONS(1169), - [anon_sym_DOLLAR] = ACTIONS(1167), - [anon_sym_yield] = ACTIONS(1169), - [aux_sym_include_expression_token1] = ACTIONS(1169), - [aux_sym_include_once_expression_token1] = ACTIONS(1169), - [aux_sym_require_expression_token1] = ACTIONS(1169), - [aux_sym_require_once_expression_token1] = ACTIONS(1169), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_name] = ACTIONS(1174), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1172), + [aux_sym_function_static_declaration_token1] = ACTIONS(1174), + [aux_sym_global_declaration_token1] = ACTIONS(1174), + [aux_sym_namespace_definition_token1] = ACTIONS(1174), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1174), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1174), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1174), + [anon_sym_BSLASH] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [aux_sym_trait_declaration_token1] = ACTIONS(1174), + [aux_sym_interface_declaration_token1] = ACTIONS(1174), + [aux_sym_class_declaration_token1] = ACTIONS(1174), + [aux_sym_final_modifier_token1] = ACTIONS(1174), + [aux_sym_abstract_modifier_token1] = ACTIONS(1174), + [aux_sym_visibility_modifier_token1] = ACTIONS(1174), + [aux_sym_visibility_modifier_token2] = ACTIONS(1174), + [aux_sym_visibility_modifier_token3] = ACTIONS(1174), + [aux_sym_arrow_function_token1] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1172), + [anon_sym_array] = ACTIONS(1174), + [anon_sym_unset] = ACTIONS(1174), + [aux_sym_echo_statement_token1] = ACTIONS(1174), + [anon_sym_declare] = ACTIONS(1174), + [aux_sym_declare_statement_token1] = ACTIONS(1174), + [sym_float] = ACTIONS(1174), + [aux_sym_try_statement_token1] = ACTIONS(1174), + [aux_sym_goto_statement_token1] = ACTIONS(1174), + [aux_sym_continue_statement_token1] = ACTIONS(1174), + [aux_sym_break_statement_token1] = ACTIONS(1174), + [sym_integer] = ACTIONS(1174), + [aux_sym_return_statement_token1] = ACTIONS(1174), + [aux_sym_throw_expression_token1] = ACTIONS(1174), + [aux_sym_while_statement_token1] = ACTIONS(1174), + [aux_sym_while_statement_token2] = ACTIONS(1174), + [aux_sym_do_statement_token1] = ACTIONS(1174), + [aux_sym_for_statement_token1] = ACTIONS(1174), + [aux_sym_for_statement_token2] = ACTIONS(1174), + [aux_sym_foreach_statement_token1] = ACTIONS(1174), + [aux_sym_foreach_statement_token2] = ACTIONS(1174), + [aux_sym_if_statement_token1] = ACTIONS(1174), + [aux_sym_if_statement_token2] = ACTIONS(1174), + [aux_sym_else_if_clause_token1] = ACTIONS(1174), + [aux_sym_else_clause_token1] = ACTIONS(1174), + [aux_sym_match_expression_token1] = ACTIONS(1174), + [aux_sym_match_default_expression_token1] = ACTIONS(1174), + [aux_sym_switch_statement_token1] = ACTIONS(1174), + [aux_sym_switch_block_token1] = ACTIONS(1174), + [aux_sym_case_statement_token1] = ACTIONS(1174), + [anon_sym_AT] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_clone] = ACTIONS(1174), + [anon_sym_print] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1174), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [sym_shell_command_expression] = ACTIONS(1172), + [anon_sym_list] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_self] = ACTIONS(1174), + [anon_sym_parent] = ACTIONS(1174), + [anon_sym_POUND_LBRACK] = ACTIONS(1172), + [sym_string] = ACTIONS(1172), + [sym_boolean] = ACTIONS(1174), + [sym_null] = ACTIONS(1174), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_yield] = ACTIONS(1174), + [aux_sym_include_expression_token1] = ACTIONS(1174), + [aux_sym_include_once_expression_token1] = ACTIONS(1174), + [aux_sym_require_expression_token1] = ACTIONS(1174), + [aux_sym_require_once_expression_token1] = ACTIONS(1174), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1167), + [sym_heredoc] = ACTIONS(1172), }, [478] = { [sym_text_interpolation] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_name] = ACTIONS(1173), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1171), - [aux_sym_function_static_declaration_token1] = ACTIONS(1173), - [aux_sym_global_declaration_token1] = ACTIONS(1173), - [aux_sym_namespace_definition_token1] = ACTIONS(1173), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1173), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1173), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1173), - [anon_sym_BSLASH] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1171), - [aux_sym_trait_declaration_token1] = ACTIONS(1173), - [aux_sym_interface_declaration_token1] = ACTIONS(1173), - [aux_sym_class_declaration_token1] = ACTIONS(1173), - [aux_sym_class_modifier_token1] = ACTIONS(1173), - [aux_sym_class_modifier_token2] = ACTIONS(1173), - [aux_sym_visibility_modifier_token1] = ACTIONS(1173), - [aux_sym_visibility_modifier_token2] = ACTIONS(1173), - [aux_sym_visibility_modifier_token3] = ACTIONS(1173), - [aux_sym_arrow_function_token1] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1171), - [anon_sym_array] = ACTIONS(1173), - [anon_sym_unset] = ACTIONS(1173), - [aux_sym_echo_statement_token1] = ACTIONS(1173), - [anon_sym_declare] = ACTIONS(1173), - [aux_sym_declare_statement_token1] = ACTIONS(1173), - [sym_float] = ACTIONS(1173), - [aux_sym_try_statement_token1] = ACTIONS(1173), - [aux_sym_goto_statement_token1] = ACTIONS(1173), - [aux_sym_continue_statement_token1] = ACTIONS(1173), - [aux_sym_break_statement_token1] = ACTIONS(1173), - [sym_integer] = ACTIONS(1173), - [aux_sym_return_statement_token1] = ACTIONS(1173), - [aux_sym_throw_expression_token1] = ACTIONS(1173), - [aux_sym_while_statement_token1] = ACTIONS(1173), - [aux_sym_while_statement_token2] = ACTIONS(1173), - [aux_sym_do_statement_token1] = ACTIONS(1173), - [aux_sym_for_statement_token1] = ACTIONS(1173), - [aux_sym_for_statement_token2] = ACTIONS(1173), - [aux_sym_foreach_statement_token1] = ACTIONS(1173), - [aux_sym_foreach_statement_token2] = ACTIONS(1173), - [aux_sym_if_statement_token1] = ACTIONS(1173), - [aux_sym_if_statement_token2] = ACTIONS(1173), - [aux_sym_else_if_clause_token1] = ACTIONS(1173), - [aux_sym_else_clause_token1] = ACTIONS(1173), - [aux_sym_match_expression_token1] = ACTIONS(1173), - [aux_sym_match_default_expression_token1] = ACTIONS(1173), - [aux_sym_switch_statement_token1] = ACTIONS(1173), - [aux_sym_switch_block_token1] = ACTIONS(1173), - [aux_sym_case_statement_token1] = ACTIONS(1173), - [anon_sym_AT] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_clone] = ACTIONS(1173), - [anon_sym_print] = ACTIONS(1173), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [sym_shell_command_expression] = ACTIONS(1171), - [anon_sym_list] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1171), - [anon_sym_self] = ACTIONS(1173), - [anon_sym_parent] = ACTIONS(1173), - [anon_sym_POUND_LBRACK] = ACTIONS(1171), - [sym_string] = ACTIONS(1171), - [sym_boolean] = ACTIONS(1173), - [sym_null] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1171), - [anon_sym_yield] = ACTIONS(1173), - [aux_sym_include_expression_token1] = ACTIONS(1173), - [aux_sym_include_once_expression_token1] = ACTIONS(1173), - [aux_sym_require_expression_token1] = ACTIONS(1173), - [aux_sym_require_once_expression_token1] = ACTIONS(1173), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_name] = ACTIONS(1178), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1176), + [aux_sym_function_static_declaration_token1] = ACTIONS(1178), + [aux_sym_global_declaration_token1] = ACTIONS(1178), + [aux_sym_namespace_definition_token1] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1178), + [anon_sym_BSLASH] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [aux_sym_trait_declaration_token1] = ACTIONS(1178), + [aux_sym_interface_declaration_token1] = ACTIONS(1178), + [aux_sym_class_declaration_token1] = ACTIONS(1178), + [aux_sym_final_modifier_token1] = ACTIONS(1178), + [aux_sym_abstract_modifier_token1] = ACTIONS(1178), + [aux_sym_visibility_modifier_token1] = ACTIONS(1178), + [aux_sym_visibility_modifier_token2] = ACTIONS(1178), + [aux_sym_visibility_modifier_token3] = ACTIONS(1178), + [aux_sym_arrow_function_token1] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1176), + [anon_sym_array] = ACTIONS(1178), + [anon_sym_unset] = ACTIONS(1178), + [aux_sym_echo_statement_token1] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [aux_sym_declare_statement_token1] = ACTIONS(1178), + [sym_float] = ACTIONS(1178), + [aux_sym_try_statement_token1] = ACTIONS(1178), + [aux_sym_goto_statement_token1] = ACTIONS(1178), + [aux_sym_continue_statement_token1] = ACTIONS(1178), + [aux_sym_break_statement_token1] = ACTIONS(1178), + [sym_integer] = ACTIONS(1178), + [aux_sym_return_statement_token1] = ACTIONS(1178), + [aux_sym_throw_expression_token1] = ACTIONS(1178), + [aux_sym_while_statement_token1] = ACTIONS(1178), + [aux_sym_while_statement_token2] = ACTIONS(1178), + [aux_sym_do_statement_token1] = ACTIONS(1178), + [aux_sym_for_statement_token1] = ACTIONS(1178), + [aux_sym_for_statement_token2] = ACTIONS(1178), + [aux_sym_foreach_statement_token1] = ACTIONS(1178), + [aux_sym_foreach_statement_token2] = ACTIONS(1178), + [aux_sym_if_statement_token1] = ACTIONS(1178), + [aux_sym_if_statement_token2] = ACTIONS(1178), + [aux_sym_else_if_clause_token1] = ACTIONS(1178), + [aux_sym_else_clause_token1] = ACTIONS(1178), + [aux_sym_match_expression_token1] = ACTIONS(1178), + [aux_sym_match_default_expression_token1] = ACTIONS(1178), + [aux_sym_switch_statement_token1] = ACTIONS(1178), + [aux_sym_switch_block_token1] = ACTIONS(1178), + [aux_sym_case_statement_token1] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(1176), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_clone] = ACTIONS(1178), + [anon_sym_print] = ACTIONS(1178), + [anon_sym_new] = ACTIONS(1178), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [sym_shell_command_expression] = ACTIONS(1176), + [anon_sym_list] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_self] = ACTIONS(1178), + [anon_sym_parent] = ACTIONS(1178), + [anon_sym_POUND_LBRACK] = ACTIONS(1176), + [sym_string] = ACTIONS(1176), + [sym_boolean] = ACTIONS(1178), + [sym_null] = ACTIONS(1178), + [anon_sym_DOLLAR] = ACTIONS(1176), + [anon_sym_yield] = ACTIONS(1178), + [aux_sym_include_expression_token1] = ACTIONS(1178), + [aux_sym_include_once_expression_token1] = ACTIONS(1178), + [aux_sym_require_expression_token1] = ACTIONS(1178), + [aux_sym_require_once_expression_token1] = ACTIONS(1178), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1171), + [sym_heredoc] = ACTIONS(1176), }, [479] = { [sym_text_interpolation] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(908), - [sym_name] = ACTIONS(910), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(908), - [aux_sym_function_static_declaration_token1] = ACTIONS(910), - [aux_sym_global_declaration_token1] = ACTIONS(910), - [aux_sym_namespace_definition_token1] = ACTIONS(910), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(910), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(910), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(910), - [anon_sym_BSLASH] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [aux_sym_trait_declaration_token1] = ACTIONS(910), - [aux_sym_interface_declaration_token1] = ACTIONS(910), - [aux_sym_class_declaration_token1] = ACTIONS(910), - [aux_sym_class_modifier_token1] = ACTIONS(910), - [aux_sym_class_modifier_token2] = ACTIONS(910), - [aux_sym_visibility_modifier_token1] = ACTIONS(910), - [aux_sym_visibility_modifier_token2] = ACTIONS(910), - [aux_sym_visibility_modifier_token3] = ACTIONS(910), - [aux_sym_arrow_function_token1] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_array] = ACTIONS(910), - [anon_sym_unset] = ACTIONS(910), - [aux_sym_echo_statement_token1] = ACTIONS(910), - [anon_sym_declare] = ACTIONS(910), - [aux_sym_declare_statement_token1] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [aux_sym_try_statement_token1] = ACTIONS(910), - [aux_sym_goto_statement_token1] = ACTIONS(910), - [aux_sym_continue_statement_token1] = ACTIONS(910), - [aux_sym_break_statement_token1] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [aux_sym_return_statement_token1] = ACTIONS(910), - [aux_sym_throw_expression_token1] = ACTIONS(910), - [aux_sym_while_statement_token1] = ACTIONS(910), - [aux_sym_while_statement_token2] = ACTIONS(910), - [aux_sym_do_statement_token1] = ACTIONS(910), - [aux_sym_for_statement_token1] = ACTIONS(910), - [aux_sym_for_statement_token2] = ACTIONS(910), - [aux_sym_foreach_statement_token1] = ACTIONS(910), - [aux_sym_foreach_statement_token2] = ACTIONS(910), - [aux_sym_if_statement_token1] = ACTIONS(910), - [aux_sym_if_statement_token2] = ACTIONS(910), - [aux_sym_else_if_clause_token1] = ACTIONS(910), - [aux_sym_else_clause_token1] = ACTIONS(910), - [aux_sym_match_expression_token1] = ACTIONS(910), - [aux_sym_match_default_expression_token1] = ACTIONS(910), - [aux_sym_switch_statement_token1] = ACTIONS(910), - [aux_sym_switch_block_token1] = ACTIONS(910), - [aux_sym_case_statement_token1] = ACTIONS(910), - [anon_sym_AT] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_clone] = ACTIONS(910), - [anon_sym_print] = ACTIONS(910), - [anon_sym_new] = ACTIONS(910), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_DASH_DASH] = ACTIONS(908), - [sym_shell_command_expression] = ACTIONS(908), - [anon_sym_list] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_self] = ACTIONS(910), - [anon_sym_parent] = ACTIONS(910), - [anon_sym_POUND_LBRACK] = ACTIONS(908), - [sym_string] = ACTIONS(908), - [sym_boolean] = ACTIONS(910), - [sym_null] = ACTIONS(910), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_yield] = ACTIONS(910), - [aux_sym_include_expression_token1] = ACTIONS(910), - [aux_sym_include_once_expression_token1] = ACTIONS(910), - [aux_sym_require_expression_token1] = ACTIONS(910), - [aux_sym_require_once_expression_token1] = ACTIONS(910), + [ts_builtin_sym_end] = ACTIONS(905), + [sym_name] = ACTIONS(907), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(905), + [aux_sym_function_static_declaration_token1] = ACTIONS(907), + [aux_sym_global_declaration_token1] = ACTIONS(907), + [aux_sym_namespace_definition_token1] = ACTIONS(907), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(907), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(907), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(907), + [anon_sym_BSLASH] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [aux_sym_trait_declaration_token1] = ACTIONS(907), + [aux_sym_interface_declaration_token1] = ACTIONS(907), + [aux_sym_class_declaration_token1] = ACTIONS(907), + [aux_sym_final_modifier_token1] = ACTIONS(907), + [aux_sym_abstract_modifier_token1] = ACTIONS(907), + [aux_sym_visibility_modifier_token1] = ACTIONS(907), + [aux_sym_visibility_modifier_token2] = ACTIONS(907), + [aux_sym_visibility_modifier_token3] = ACTIONS(907), + [aux_sym_arrow_function_token1] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_array] = ACTIONS(907), + [anon_sym_unset] = ACTIONS(907), + [aux_sym_echo_statement_token1] = ACTIONS(907), + [anon_sym_declare] = ACTIONS(907), + [aux_sym_declare_statement_token1] = ACTIONS(907), + [sym_float] = ACTIONS(907), + [aux_sym_try_statement_token1] = ACTIONS(907), + [aux_sym_goto_statement_token1] = ACTIONS(907), + [aux_sym_continue_statement_token1] = ACTIONS(907), + [aux_sym_break_statement_token1] = ACTIONS(907), + [sym_integer] = ACTIONS(907), + [aux_sym_return_statement_token1] = ACTIONS(907), + [aux_sym_throw_expression_token1] = ACTIONS(907), + [aux_sym_while_statement_token1] = ACTIONS(907), + [aux_sym_while_statement_token2] = ACTIONS(907), + [aux_sym_do_statement_token1] = ACTIONS(907), + [aux_sym_for_statement_token1] = ACTIONS(907), + [aux_sym_for_statement_token2] = ACTIONS(907), + [aux_sym_foreach_statement_token1] = ACTIONS(907), + [aux_sym_foreach_statement_token2] = ACTIONS(907), + [aux_sym_if_statement_token1] = ACTIONS(907), + [aux_sym_if_statement_token2] = ACTIONS(907), + [aux_sym_else_if_clause_token1] = ACTIONS(907), + [aux_sym_else_clause_token1] = ACTIONS(907), + [aux_sym_match_expression_token1] = ACTIONS(907), + [aux_sym_match_default_expression_token1] = ACTIONS(907), + [aux_sym_switch_statement_token1] = ACTIONS(907), + [aux_sym_switch_block_token1] = ACTIONS(907), + [aux_sym_case_statement_token1] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_TILDE] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_clone] = ACTIONS(907), + [anon_sym_print] = ACTIONS(907), + [anon_sym_new] = ACTIONS(907), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [sym_shell_command_expression] = ACTIONS(905), + [anon_sym_list] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_self] = ACTIONS(907), + [anon_sym_parent] = ACTIONS(907), + [anon_sym_POUND_LBRACK] = ACTIONS(905), + [sym_string] = ACTIONS(905), + [sym_boolean] = ACTIONS(907), + [sym_null] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(907), + [aux_sym_include_expression_token1] = ACTIONS(907), + [aux_sym_include_once_expression_token1] = ACTIONS(907), + [aux_sym_require_expression_token1] = ACTIONS(907), + [aux_sym_require_once_expression_token1] = ACTIONS(907), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(908), + [sym_heredoc] = ACTIONS(905), }, [480] = { [sym_text_interpolation] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_name] = ACTIONS(1177), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1175), - [aux_sym_function_static_declaration_token1] = ACTIONS(1177), - [aux_sym_global_declaration_token1] = ACTIONS(1177), - [aux_sym_namespace_definition_token1] = ACTIONS(1177), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1177), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1177), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1177), - [anon_sym_BSLASH] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [aux_sym_trait_declaration_token1] = ACTIONS(1177), - [aux_sym_interface_declaration_token1] = ACTIONS(1177), - [aux_sym_class_declaration_token1] = ACTIONS(1177), - [aux_sym_class_modifier_token1] = ACTIONS(1177), - [aux_sym_class_modifier_token2] = ACTIONS(1177), - [aux_sym_visibility_modifier_token1] = ACTIONS(1177), - [aux_sym_visibility_modifier_token2] = ACTIONS(1177), - [aux_sym_visibility_modifier_token3] = ACTIONS(1177), - [aux_sym_arrow_function_token1] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_array] = ACTIONS(1177), - [anon_sym_unset] = ACTIONS(1177), - [aux_sym_echo_statement_token1] = ACTIONS(1177), - [anon_sym_declare] = ACTIONS(1177), - [aux_sym_declare_statement_token1] = ACTIONS(1177), - [sym_float] = ACTIONS(1177), - [aux_sym_try_statement_token1] = ACTIONS(1177), - [aux_sym_goto_statement_token1] = ACTIONS(1177), - [aux_sym_continue_statement_token1] = ACTIONS(1177), - [aux_sym_break_statement_token1] = ACTIONS(1177), - [sym_integer] = ACTIONS(1177), - [aux_sym_return_statement_token1] = ACTIONS(1177), - [aux_sym_throw_expression_token1] = ACTIONS(1177), - [aux_sym_while_statement_token1] = ACTIONS(1177), - [aux_sym_while_statement_token2] = ACTIONS(1177), - [aux_sym_do_statement_token1] = ACTIONS(1177), - [aux_sym_for_statement_token1] = ACTIONS(1177), - [aux_sym_for_statement_token2] = ACTIONS(1177), - [aux_sym_foreach_statement_token1] = ACTIONS(1177), - [aux_sym_foreach_statement_token2] = ACTIONS(1177), - [aux_sym_if_statement_token1] = ACTIONS(1177), - [aux_sym_if_statement_token2] = ACTIONS(1177), - [aux_sym_else_if_clause_token1] = ACTIONS(1177), - [aux_sym_else_clause_token1] = ACTIONS(1177), - [aux_sym_match_expression_token1] = ACTIONS(1177), - [aux_sym_match_default_expression_token1] = ACTIONS(1177), - [aux_sym_switch_statement_token1] = ACTIONS(1177), - [aux_sym_switch_block_token1] = ACTIONS(1177), - [aux_sym_case_statement_token1] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_clone] = ACTIONS(1177), - [anon_sym_print] = ACTIONS(1177), - [anon_sym_new] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [sym_shell_command_expression] = ACTIONS(1175), - [anon_sym_list] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_self] = ACTIONS(1177), - [anon_sym_parent] = ACTIONS(1177), - [anon_sym_POUND_LBRACK] = ACTIONS(1175), - [sym_string] = ACTIONS(1175), - [sym_boolean] = ACTIONS(1177), - [sym_null] = ACTIONS(1177), - [anon_sym_DOLLAR] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1177), - [aux_sym_include_expression_token1] = ACTIONS(1177), - [aux_sym_include_once_expression_token1] = ACTIONS(1177), - [aux_sym_require_expression_token1] = ACTIONS(1177), - [aux_sym_require_once_expression_token1] = ACTIONS(1177), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_name] = ACTIONS(1182), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1180), + [aux_sym_function_static_declaration_token1] = ACTIONS(1182), + [aux_sym_global_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_definition_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1182), + [anon_sym_BSLASH] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [aux_sym_trait_declaration_token1] = ACTIONS(1182), + [aux_sym_interface_declaration_token1] = ACTIONS(1182), + [aux_sym_class_declaration_token1] = ACTIONS(1182), + [aux_sym_final_modifier_token1] = ACTIONS(1182), + [aux_sym_abstract_modifier_token1] = ACTIONS(1182), + [aux_sym_visibility_modifier_token1] = ACTIONS(1182), + [aux_sym_visibility_modifier_token2] = ACTIONS(1182), + [aux_sym_visibility_modifier_token3] = ACTIONS(1182), + [aux_sym_arrow_function_token1] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1180), + [anon_sym_array] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1182), + [aux_sym_echo_statement_token1] = ACTIONS(1182), + [anon_sym_declare] = ACTIONS(1182), + [aux_sym_declare_statement_token1] = ACTIONS(1182), + [sym_float] = ACTIONS(1182), + [aux_sym_try_statement_token1] = ACTIONS(1182), + [aux_sym_goto_statement_token1] = ACTIONS(1182), + [aux_sym_continue_statement_token1] = ACTIONS(1182), + [aux_sym_break_statement_token1] = ACTIONS(1182), + [sym_integer] = ACTIONS(1182), + [aux_sym_return_statement_token1] = ACTIONS(1182), + [aux_sym_throw_expression_token1] = ACTIONS(1182), + [aux_sym_while_statement_token1] = ACTIONS(1182), + [aux_sym_while_statement_token2] = ACTIONS(1182), + [aux_sym_do_statement_token1] = ACTIONS(1182), + [aux_sym_for_statement_token1] = ACTIONS(1182), + [aux_sym_for_statement_token2] = ACTIONS(1182), + [aux_sym_foreach_statement_token1] = ACTIONS(1182), + [aux_sym_foreach_statement_token2] = ACTIONS(1182), + [aux_sym_if_statement_token1] = ACTIONS(1182), + [aux_sym_if_statement_token2] = ACTIONS(1182), + [aux_sym_else_if_clause_token1] = ACTIONS(1182), + [aux_sym_else_clause_token1] = ACTIONS(1182), + [aux_sym_match_expression_token1] = ACTIONS(1182), + [aux_sym_match_default_expression_token1] = ACTIONS(1182), + [aux_sym_switch_statement_token1] = ACTIONS(1182), + [aux_sym_switch_block_token1] = ACTIONS(1182), + [aux_sym_case_statement_token1] = ACTIONS(1182), + [anon_sym_AT] = ACTIONS(1180), + [anon_sym_PLUS] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_clone] = ACTIONS(1182), + [anon_sym_print] = ACTIONS(1182), + [anon_sym_new] = ACTIONS(1182), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [sym_shell_command_expression] = ACTIONS(1180), + [anon_sym_list] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_self] = ACTIONS(1182), + [anon_sym_parent] = ACTIONS(1182), + [anon_sym_POUND_LBRACK] = ACTIONS(1180), + [sym_string] = ACTIONS(1180), + [sym_boolean] = ACTIONS(1182), + [sym_null] = ACTIONS(1182), + [anon_sym_DOLLAR] = ACTIONS(1180), + [anon_sym_yield] = ACTIONS(1182), + [aux_sym_include_expression_token1] = ACTIONS(1182), + [aux_sym_include_once_expression_token1] = ACTIONS(1182), + [aux_sym_require_expression_token1] = ACTIONS(1182), + [aux_sym_require_once_expression_token1] = ACTIONS(1182), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1175), + [sym_heredoc] = ACTIONS(1180), }, [481] = { [sym_text_interpolation] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1179), - [sym_name] = ACTIONS(1181), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1179), - [aux_sym_function_static_declaration_token1] = ACTIONS(1181), - [aux_sym_global_declaration_token1] = ACTIONS(1181), - [aux_sym_namespace_definition_token1] = ACTIONS(1181), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1181), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1181), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1181), - [anon_sym_BSLASH] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [aux_sym_trait_declaration_token1] = ACTIONS(1181), - [aux_sym_interface_declaration_token1] = ACTIONS(1181), - [aux_sym_class_declaration_token1] = ACTIONS(1181), - [aux_sym_class_modifier_token1] = ACTIONS(1181), - [aux_sym_class_modifier_token2] = ACTIONS(1181), - [aux_sym_visibility_modifier_token1] = ACTIONS(1181), - [aux_sym_visibility_modifier_token2] = ACTIONS(1181), - [aux_sym_visibility_modifier_token3] = ACTIONS(1181), - [aux_sym_arrow_function_token1] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_array] = ACTIONS(1181), - [anon_sym_unset] = ACTIONS(1181), - [aux_sym_echo_statement_token1] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1181), - [aux_sym_declare_statement_token1] = ACTIONS(1181), - [sym_float] = ACTIONS(1181), - [aux_sym_try_statement_token1] = ACTIONS(1181), - [aux_sym_goto_statement_token1] = ACTIONS(1181), - [aux_sym_continue_statement_token1] = ACTIONS(1181), - [aux_sym_break_statement_token1] = ACTIONS(1181), - [sym_integer] = ACTIONS(1181), - [aux_sym_return_statement_token1] = ACTIONS(1181), - [aux_sym_throw_expression_token1] = ACTIONS(1181), - [aux_sym_while_statement_token1] = ACTIONS(1181), - [aux_sym_while_statement_token2] = ACTIONS(1181), - [aux_sym_do_statement_token1] = ACTIONS(1181), - [aux_sym_for_statement_token1] = ACTIONS(1181), - [aux_sym_for_statement_token2] = ACTIONS(1181), - [aux_sym_foreach_statement_token1] = ACTIONS(1181), - [aux_sym_foreach_statement_token2] = ACTIONS(1181), - [aux_sym_if_statement_token1] = ACTIONS(1181), - [aux_sym_if_statement_token2] = ACTIONS(1181), - [aux_sym_else_if_clause_token1] = ACTIONS(1181), - [aux_sym_else_clause_token1] = ACTIONS(1181), - [aux_sym_match_expression_token1] = ACTIONS(1181), - [aux_sym_match_default_expression_token1] = ACTIONS(1181), - [aux_sym_switch_statement_token1] = ACTIONS(1181), - [aux_sym_switch_block_token1] = ACTIONS(1181), - [aux_sym_case_statement_token1] = ACTIONS(1181), - [anon_sym_AT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_clone] = ACTIONS(1181), - [anon_sym_print] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [sym_shell_command_expression] = ACTIONS(1179), - [anon_sym_list] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1179), - [anon_sym_self] = ACTIONS(1181), - [anon_sym_parent] = ACTIONS(1181), - [anon_sym_POUND_LBRACK] = ACTIONS(1179), - [sym_string] = ACTIONS(1179), - [sym_boolean] = ACTIONS(1181), - [sym_null] = ACTIONS(1181), - [anon_sym_DOLLAR] = ACTIONS(1179), - [anon_sym_yield] = ACTIONS(1181), - [aux_sym_include_expression_token1] = ACTIONS(1181), - [aux_sym_include_once_expression_token1] = ACTIONS(1181), - [aux_sym_require_expression_token1] = ACTIONS(1181), - [aux_sym_require_once_expression_token1] = ACTIONS(1181), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_name] = ACTIONS(1186), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1184), + [aux_sym_function_static_declaration_token1] = ACTIONS(1186), + [aux_sym_global_declaration_token1] = ACTIONS(1186), + [aux_sym_namespace_definition_token1] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1186), + [anon_sym_BSLASH] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [aux_sym_trait_declaration_token1] = ACTIONS(1186), + [aux_sym_interface_declaration_token1] = ACTIONS(1186), + [aux_sym_class_declaration_token1] = ACTIONS(1186), + [aux_sym_final_modifier_token1] = ACTIONS(1186), + [aux_sym_abstract_modifier_token1] = ACTIONS(1186), + [aux_sym_visibility_modifier_token1] = ACTIONS(1186), + [aux_sym_visibility_modifier_token2] = ACTIONS(1186), + [aux_sym_visibility_modifier_token3] = ACTIONS(1186), + [aux_sym_arrow_function_token1] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_array] = ACTIONS(1186), + [anon_sym_unset] = ACTIONS(1186), + [aux_sym_echo_statement_token1] = ACTIONS(1186), + [anon_sym_declare] = ACTIONS(1186), + [aux_sym_declare_statement_token1] = ACTIONS(1186), + [sym_float] = ACTIONS(1186), + [aux_sym_try_statement_token1] = ACTIONS(1186), + [aux_sym_goto_statement_token1] = ACTIONS(1186), + [aux_sym_continue_statement_token1] = ACTIONS(1186), + [aux_sym_break_statement_token1] = ACTIONS(1186), + [sym_integer] = ACTIONS(1186), + [aux_sym_return_statement_token1] = ACTIONS(1186), + [aux_sym_throw_expression_token1] = ACTIONS(1186), + [aux_sym_while_statement_token1] = ACTIONS(1186), + [aux_sym_while_statement_token2] = ACTIONS(1186), + [aux_sym_do_statement_token1] = ACTIONS(1186), + [aux_sym_for_statement_token1] = ACTIONS(1186), + [aux_sym_for_statement_token2] = ACTIONS(1186), + [aux_sym_foreach_statement_token1] = ACTIONS(1186), + [aux_sym_foreach_statement_token2] = ACTIONS(1186), + [aux_sym_if_statement_token1] = ACTIONS(1186), + [aux_sym_if_statement_token2] = ACTIONS(1186), + [aux_sym_else_if_clause_token1] = ACTIONS(1186), + [aux_sym_else_clause_token1] = ACTIONS(1186), + [aux_sym_match_expression_token1] = ACTIONS(1186), + [aux_sym_match_default_expression_token1] = ACTIONS(1186), + [aux_sym_switch_statement_token1] = ACTIONS(1186), + [aux_sym_switch_block_token1] = ACTIONS(1186), + [aux_sym_case_statement_token1] = ACTIONS(1186), + [anon_sym_AT] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_clone] = ACTIONS(1186), + [anon_sym_print] = ACTIONS(1186), + [anon_sym_new] = ACTIONS(1186), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [anon_sym_DASH_DASH] = ACTIONS(1184), + [sym_shell_command_expression] = ACTIONS(1184), + [anon_sym_list] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_self] = ACTIONS(1186), + [anon_sym_parent] = ACTIONS(1186), + [anon_sym_POUND_LBRACK] = ACTIONS(1184), + [sym_string] = ACTIONS(1184), + [sym_boolean] = ACTIONS(1186), + [sym_null] = ACTIONS(1186), + [anon_sym_DOLLAR] = ACTIONS(1184), + [anon_sym_yield] = ACTIONS(1186), + [aux_sym_include_expression_token1] = ACTIONS(1186), + [aux_sym_include_once_expression_token1] = ACTIONS(1186), + [aux_sym_require_expression_token1] = ACTIONS(1186), + [aux_sym_require_once_expression_token1] = ACTIONS(1186), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1179), + [sym_heredoc] = ACTIONS(1184), }, [482] = { [sym_text_interpolation] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1183), - [sym_name] = ACTIONS(1185), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1183), - [aux_sym_function_static_declaration_token1] = ACTIONS(1185), - [aux_sym_global_declaration_token1] = ACTIONS(1185), - [aux_sym_namespace_definition_token1] = ACTIONS(1185), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1185), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1185), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1185), - [anon_sym_BSLASH] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [aux_sym_trait_declaration_token1] = ACTIONS(1185), - [aux_sym_interface_declaration_token1] = ACTIONS(1185), - [aux_sym_class_declaration_token1] = ACTIONS(1185), - [aux_sym_class_modifier_token1] = ACTIONS(1185), - [aux_sym_class_modifier_token2] = ACTIONS(1185), - [aux_sym_visibility_modifier_token1] = ACTIONS(1185), - [aux_sym_visibility_modifier_token2] = ACTIONS(1185), - [aux_sym_visibility_modifier_token3] = ACTIONS(1185), - [aux_sym_arrow_function_token1] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_array] = ACTIONS(1185), - [anon_sym_unset] = ACTIONS(1185), - [aux_sym_echo_statement_token1] = ACTIONS(1185), - [anon_sym_declare] = ACTIONS(1185), - [aux_sym_declare_statement_token1] = ACTIONS(1185), - [sym_float] = ACTIONS(1185), - [aux_sym_try_statement_token1] = ACTIONS(1185), - [aux_sym_goto_statement_token1] = ACTIONS(1185), - [aux_sym_continue_statement_token1] = ACTIONS(1185), - [aux_sym_break_statement_token1] = ACTIONS(1185), - [sym_integer] = ACTIONS(1185), - [aux_sym_return_statement_token1] = ACTIONS(1185), - [aux_sym_throw_expression_token1] = ACTIONS(1185), - [aux_sym_while_statement_token1] = ACTIONS(1185), - [aux_sym_while_statement_token2] = ACTIONS(1185), - [aux_sym_do_statement_token1] = ACTIONS(1185), - [aux_sym_for_statement_token1] = ACTIONS(1185), - [aux_sym_for_statement_token2] = ACTIONS(1185), - [aux_sym_foreach_statement_token1] = ACTIONS(1185), - [aux_sym_foreach_statement_token2] = ACTIONS(1185), - [aux_sym_if_statement_token1] = ACTIONS(1185), - [aux_sym_if_statement_token2] = ACTIONS(1185), - [aux_sym_else_if_clause_token1] = ACTIONS(1185), - [aux_sym_else_clause_token1] = ACTIONS(1185), - [aux_sym_match_expression_token1] = ACTIONS(1185), - [aux_sym_match_default_expression_token1] = ACTIONS(1185), - [aux_sym_switch_statement_token1] = ACTIONS(1185), - [aux_sym_switch_block_token1] = ACTIONS(1185), - [aux_sym_case_statement_token1] = ACTIONS(1185), - [anon_sym_AT] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_clone] = ACTIONS(1185), - [anon_sym_print] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [sym_shell_command_expression] = ACTIONS(1183), - [anon_sym_list] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1183), - [anon_sym_self] = ACTIONS(1185), - [anon_sym_parent] = ACTIONS(1185), - [anon_sym_POUND_LBRACK] = ACTIONS(1183), - [sym_string] = ACTIONS(1183), - [sym_boolean] = ACTIONS(1185), - [sym_null] = ACTIONS(1185), - [anon_sym_DOLLAR] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1185), - [aux_sym_include_expression_token1] = ACTIONS(1185), - [aux_sym_include_once_expression_token1] = ACTIONS(1185), - [aux_sym_require_expression_token1] = ACTIONS(1185), - [aux_sym_require_once_expression_token1] = ACTIONS(1185), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_name] = ACTIONS(1190), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1188), + [aux_sym_function_static_declaration_token1] = ACTIONS(1190), + [aux_sym_global_declaration_token1] = ACTIONS(1190), + [aux_sym_namespace_definition_token1] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1190), + [anon_sym_BSLASH] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [aux_sym_trait_declaration_token1] = ACTIONS(1190), + [aux_sym_interface_declaration_token1] = ACTIONS(1190), + [aux_sym_class_declaration_token1] = ACTIONS(1190), + [aux_sym_final_modifier_token1] = ACTIONS(1190), + [aux_sym_abstract_modifier_token1] = ACTIONS(1190), + [aux_sym_visibility_modifier_token1] = ACTIONS(1190), + [aux_sym_visibility_modifier_token2] = ACTIONS(1190), + [aux_sym_visibility_modifier_token3] = ACTIONS(1190), + [aux_sym_arrow_function_token1] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_array] = ACTIONS(1190), + [anon_sym_unset] = ACTIONS(1190), + [aux_sym_echo_statement_token1] = ACTIONS(1190), + [anon_sym_declare] = ACTIONS(1190), + [aux_sym_declare_statement_token1] = ACTIONS(1190), + [sym_float] = ACTIONS(1190), + [aux_sym_try_statement_token1] = ACTIONS(1190), + [aux_sym_goto_statement_token1] = ACTIONS(1190), + [aux_sym_continue_statement_token1] = ACTIONS(1190), + [aux_sym_break_statement_token1] = ACTIONS(1190), + [sym_integer] = ACTIONS(1190), + [aux_sym_return_statement_token1] = ACTIONS(1190), + [aux_sym_throw_expression_token1] = ACTIONS(1190), + [aux_sym_while_statement_token1] = ACTIONS(1190), + [aux_sym_while_statement_token2] = ACTIONS(1190), + [aux_sym_do_statement_token1] = ACTIONS(1190), + [aux_sym_for_statement_token1] = ACTIONS(1190), + [aux_sym_for_statement_token2] = ACTIONS(1190), + [aux_sym_foreach_statement_token1] = ACTIONS(1190), + [aux_sym_foreach_statement_token2] = ACTIONS(1190), + [aux_sym_if_statement_token1] = ACTIONS(1190), + [aux_sym_if_statement_token2] = ACTIONS(1190), + [aux_sym_else_if_clause_token1] = ACTIONS(1190), + [aux_sym_else_clause_token1] = ACTIONS(1190), + [aux_sym_match_expression_token1] = ACTIONS(1190), + [aux_sym_match_default_expression_token1] = ACTIONS(1190), + [aux_sym_switch_statement_token1] = ACTIONS(1190), + [aux_sym_switch_block_token1] = ACTIONS(1190), + [aux_sym_case_statement_token1] = ACTIONS(1190), + [anon_sym_AT] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_clone] = ACTIONS(1190), + [anon_sym_print] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1190), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [sym_shell_command_expression] = ACTIONS(1188), + [anon_sym_list] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_self] = ACTIONS(1190), + [anon_sym_parent] = ACTIONS(1190), + [anon_sym_POUND_LBRACK] = ACTIONS(1188), + [sym_string] = ACTIONS(1188), + [sym_boolean] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [aux_sym_include_expression_token1] = ACTIONS(1190), + [aux_sym_include_once_expression_token1] = ACTIONS(1190), + [aux_sym_require_expression_token1] = ACTIONS(1190), + [aux_sym_require_once_expression_token1] = ACTIONS(1190), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1183), + [sym_heredoc] = ACTIONS(1188), }, [483] = { [sym_text_interpolation] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1187), - [sym_name] = ACTIONS(1189), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1187), - [aux_sym_function_static_declaration_token1] = ACTIONS(1189), - [aux_sym_global_declaration_token1] = ACTIONS(1189), - [aux_sym_namespace_definition_token1] = ACTIONS(1189), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1189), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1189), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1189), - [anon_sym_BSLASH] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_RBRACE] = ACTIONS(1187), - [aux_sym_trait_declaration_token1] = ACTIONS(1189), - [aux_sym_interface_declaration_token1] = ACTIONS(1189), - [aux_sym_class_declaration_token1] = ACTIONS(1189), - [aux_sym_class_modifier_token1] = ACTIONS(1189), - [aux_sym_class_modifier_token2] = ACTIONS(1189), - [aux_sym_visibility_modifier_token1] = ACTIONS(1189), - [aux_sym_visibility_modifier_token2] = ACTIONS(1189), - [aux_sym_visibility_modifier_token3] = ACTIONS(1189), - [aux_sym_arrow_function_token1] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1187), - [anon_sym_array] = ACTIONS(1189), - [anon_sym_unset] = ACTIONS(1189), - [aux_sym_echo_statement_token1] = ACTIONS(1189), - [anon_sym_declare] = ACTIONS(1189), - [aux_sym_declare_statement_token1] = ACTIONS(1189), - [sym_float] = ACTIONS(1189), - [aux_sym_try_statement_token1] = ACTIONS(1189), - [aux_sym_goto_statement_token1] = ACTIONS(1189), - [aux_sym_continue_statement_token1] = ACTIONS(1189), - [aux_sym_break_statement_token1] = ACTIONS(1189), - [sym_integer] = ACTIONS(1189), - [aux_sym_return_statement_token1] = ACTIONS(1189), - [aux_sym_throw_expression_token1] = ACTIONS(1189), - [aux_sym_while_statement_token1] = ACTIONS(1189), - [aux_sym_while_statement_token2] = ACTIONS(1189), - [aux_sym_do_statement_token1] = ACTIONS(1189), - [aux_sym_for_statement_token1] = ACTIONS(1189), - [aux_sym_for_statement_token2] = ACTIONS(1189), - [aux_sym_foreach_statement_token1] = ACTIONS(1189), - [aux_sym_foreach_statement_token2] = ACTIONS(1189), - [aux_sym_if_statement_token1] = ACTIONS(1189), - [aux_sym_if_statement_token2] = ACTIONS(1189), - [aux_sym_else_if_clause_token1] = ACTIONS(1189), - [aux_sym_else_clause_token1] = ACTIONS(1189), - [aux_sym_match_expression_token1] = ACTIONS(1189), - [aux_sym_match_default_expression_token1] = ACTIONS(1189), - [aux_sym_switch_statement_token1] = ACTIONS(1189), - [aux_sym_switch_block_token1] = ACTIONS(1189), - [aux_sym_case_statement_token1] = ACTIONS(1189), - [anon_sym_AT] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_clone] = ACTIONS(1189), - [anon_sym_print] = ACTIONS(1189), - [anon_sym_new] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [sym_shell_command_expression] = ACTIONS(1187), - [anon_sym_list] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1187), - [anon_sym_self] = ACTIONS(1189), - [anon_sym_parent] = ACTIONS(1189), - [anon_sym_POUND_LBRACK] = ACTIONS(1187), - [sym_string] = ACTIONS(1187), - [sym_boolean] = ACTIONS(1189), - [sym_null] = ACTIONS(1189), - [anon_sym_DOLLAR] = ACTIONS(1187), - [anon_sym_yield] = ACTIONS(1189), - [aux_sym_include_expression_token1] = ACTIONS(1189), - [aux_sym_include_once_expression_token1] = ACTIONS(1189), - [aux_sym_require_expression_token1] = ACTIONS(1189), - [aux_sym_require_once_expression_token1] = ACTIONS(1189), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_name] = ACTIONS(1194), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1192), + [aux_sym_function_static_declaration_token1] = ACTIONS(1194), + [aux_sym_global_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_definition_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [aux_sym_trait_declaration_token1] = ACTIONS(1194), + [aux_sym_interface_declaration_token1] = ACTIONS(1194), + [aux_sym_class_declaration_token1] = ACTIONS(1194), + [aux_sym_final_modifier_token1] = ACTIONS(1194), + [aux_sym_abstract_modifier_token1] = ACTIONS(1194), + [aux_sym_visibility_modifier_token1] = ACTIONS(1194), + [aux_sym_visibility_modifier_token2] = ACTIONS(1194), + [aux_sym_visibility_modifier_token3] = ACTIONS(1194), + [aux_sym_arrow_function_token1] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_array] = ACTIONS(1194), + [anon_sym_unset] = ACTIONS(1194), + [aux_sym_echo_statement_token1] = ACTIONS(1194), + [anon_sym_declare] = ACTIONS(1194), + [aux_sym_declare_statement_token1] = ACTIONS(1194), + [sym_float] = ACTIONS(1194), + [aux_sym_try_statement_token1] = ACTIONS(1194), + [aux_sym_goto_statement_token1] = ACTIONS(1194), + [aux_sym_continue_statement_token1] = ACTIONS(1194), + [aux_sym_break_statement_token1] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [aux_sym_return_statement_token1] = ACTIONS(1194), + [aux_sym_throw_expression_token1] = ACTIONS(1194), + [aux_sym_while_statement_token1] = ACTIONS(1194), + [aux_sym_while_statement_token2] = ACTIONS(1194), + [aux_sym_do_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token2] = ACTIONS(1194), + [aux_sym_foreach_statement_token1] = ACTIONS(1194), + [aux_sym_foreach_statement_token2] = ACTIONS(1194), + [aux_sym_if_statement_token1] = ACTIONS(1194), + [aux_sym_if_statement_token2] = ACTIONS(1194), + [aux_sym_else_if_clause_token1] = ACTIONS(1194), + [aux_sym_else_clause_token1] = ACTIONS(1194), + [aux_sym_match_expression_token1] = ACTIONS(1194), + [aux_sym_match_default_expression_token1] = ACTIONS(1194), + [aux_sym_switch_statement_token1] = ACTIONS(1194), + [aux_sym_switch_block_token1] = ACTIONS(1194), + [aux_sym_case_statement_token1] = ACTIONS(1194), + [anon_sym_AT] = ACTIONS(1192), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_clone] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1194), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [sym_shell_command_expression] = ACTIONS(1192), + [anon_sym_list] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_self] = ACTIONS(1194), + [anon_sym_parent] = ACTIONS(1194), + [anon_sym_POUND_LBRACK] = ACTIONS(1192), + [sym_string] = ACTIONS(1192), + [sym_boolean] = ACTIONS(1194), + [sym_null] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_yield] = ACTIONS(1194), + [aux_sym_include_expression_token1] = ACTIONS(1194), + [aux_sym_include_once_expression_token1] = ACTIONS(1194), + [aux_sym_require_expression_token1] = ACTIONS(1194), + [aux_sym_require_once_expression_token1] = ACTIONS(1194), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1187), + [sym_heredoc] = ACTIONS(1192), }, [484] = { [sym_text_interpolation] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_name] = ACTIONS(1193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1191), - [aux_sym_function_static_declaration_token1] = ACTIONS(1193), - [aux_sym_global_declaration_token1] = ACTIONS(1193), - [aux_sym_namespace_definition_token1] = ACTIONS(1193), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1193), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1193), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1193), - [anon_sym_BSLASH] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1191), - [aux_sym_trait_declaration_token1] = ACTIONS(1193), - [aux_sym_interface_declaration_token1] = ACTIONS(1193), - [aux_sym_class_declaration_token1] = ACTIONS(1193), - [aux_sym_class_modifier_token1] = ACTIONS(1193), - [aux_sym_class_modifier_token2] = ACTIONS(1193), - [aux_sym_visibility_modifier_token1] = ACTIONS(1193), - [aux_sym_visibility_modifier_token2] = ACTIONS(1193), - [aux_sym_visibility_modifier_token3] = ACTIONS(1193), - [aux_sym_arrow_function_token1] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_array] = ACTIONS(1193), - [anon_sym_unset] = ACTIONS(1193), - [aux_sym_echo_statement_token1] = ACTIONS(1193), - [anon_sym_declare] = ACTIONS(1193), - [aux_sym_declare_statement_token1] = ACTIONS(1193), - [sym_float] = ACTIONS(1193), - [aux_sym_try_statement_token1] = ACTIONS(1193), - [aux_sym_goto_statement_token1] = ACTIONS(1193), - [aux_sym_continue_statement_token1] = ACTIONS(1193), - [aux_sym_break_statement_token1] = ACTIONS(1193), - [sym_integer] = ACTIONS(1193), - [aux_sym_return_statement_token1] = ACTIONS(1193), - [aux_sym_throw_expression_token1] = ACTIONS(1193), - [aux_sym_while_statement_token1] = ACTIONS(1193), - [aux_sym_while_statement_token2] = ACTIONS(1193), - [aux_sym_do_statement_token1] = ACTIONS(1193), - [aux_sym_for_statement_token1] = ACTIONS(1193), - [aux_sym_for_statement_token2] = ACTIONS(1193), - [aux_sym_foreach_statement_token1] = ACTIONS(1193), - [aux_sym_foreach_statement_token2] = ACTIONS(1193), - [aux_sym_if_statement_token1] = ACTIONS(1193), - [aux_sym_if_statement_token2] = ACTIONS(1193), - [aux_sym_else_if_clause_token1] = ACTIONS(1193), - [aux_sym_else_clause_token1] = ACTIONS(1193), - [aux_sym_match_expression_token1] = ACTIONS(1193), - [aux_sym_match_default_expression_token1] = ACTIONS(1193), - [aux_sym_switch_statement_token1] = ACTIONS(1193), - [aux_sym_switch_block_token1] = ACTIONS(1193), - [aux_sym_case_statement_token1] = ACTIONS(1193), - [anon_sym_AT] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_clone] = ACTIONS(1193), - [anon_sym_print] = ACTIONS(1193), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [sym_shell_command_expression] = ACTIONS(1191), - [anon_sym_list] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1191), - [anon_sym_self] = ACTIONS(1193), - [anon_sym_parent] = ACTIONS(1193), - [anon_sym_POUND_LBRACK] = ACTIONS(1191), - [sym_string] = ACTIONS(1191), - [sym_boolean] = ACTIONS(1193), - [sym_null] = ACTIONS(1193), - [anon_sym_DOLLAR] = ACTIONS(1191), - [anon_sym_yield] = ACTIONS(1193), - [aux_sym_include_expression_token1] = ACTIONS(1193), - [aux_sym_include_once_expression_token1] = ACTIONS(1193), - [aux_sym_require_expression_token1] = ACTIONS(1193), - [aux_sym_require_once_expression_token1] = ACTIONS(1193), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_name] = ACTIONS(1198), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1196), + [aux_sym_function_static_declaration_token1] = ACTIONS(1198), + [aux_sym_global_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_definition_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1198), + [anon_sym_BSLASH] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [aux_sym_trait_declaration_token1] = ACTIONS(1198), + [aux_sym_interface_declaration_token1] = ACTIONS(1198), + [aux_sym_class_declaration_token1] = ACTIONS(1198), + [aux_sym_final_modifier_token1] = ACTIONS(1198), + [aux_sym_abstract_modifier_token1] = ACTIONS(1198), + [aux_sym_visibility_modifier_token1] = ACTIONS(1198), + [aux_sym_visibility_modifier_token2] = ACTIONS(1198), + [aux_sym_visibility_modifier_token3] = ACTIONS(1198), + [aux_sym_arrow_function_token1] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_array] = ACTIONS(1198), + [anon_sym_unset] = ACTIONS(1198), + [aux_sym_echo_statement_token1] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [aux_sym_declare_statement_token1] = ACTIONS(1198), + [sym_float] = ACTIONS(1198), + [aux_sym_try_statement_token1] = ACTIONS(1198), + [aux_sym_goto_statement_token1] = ACTIONS(1198), + [aux_sym_continue_statement_token1] = ACTIONS(1198), + [aux_sym_break_statement_token1] = ACTIONS(1198), + [sym_integer] = ACTIONS(1198), + [aux_sym_return_statement_token1] = ACTIONS(1198), + [aux_sym_throw_expression_token1] = ACTIONS(1198), + [aux_sym_while_statement_token1] = ACTIONS(1198), + [aux_sym_while_statement_token2] = ACTIONS(1198), + [aux_sym_do_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token2] = ACTIONS(1198), + [aux_sym_foreach_statement_token1] = ACTIONS(1198), + [aux_sym_foreach_statement_token2] = ACTIONS(1198), + [aux_sym_if_statement_token1] = ACTIONS(1198), + [aux_sym_if_statement_token2] = ACTIONS(1198), + [aux_sym_else_if_clause_token1] = ACTIONS(1198), + [aux_sym_else_clause_token1] = ACTIONS(1198), + [aux_sym_match_expression_token1] = ACTIONS(1198), + [aux_sym_match_default_expression_token1] = ACTIONS(1198), + [aux_sym_switch_statement_token1] = ACTIONS(1198), + [aux_sym_switch_block_token1] = ACTIONS(1198), + [aux_sym_case_statement_token1] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_clone] = ACTIONS(1198), + [anon_sym_print] = ACTIONS(1198), + [anon_sym_new] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [sym_shell_command_expression] = ACTIONS(1196), + [anon_sym_list] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_self] = ACTIONS(1198), + [anon_sym_parent] = ACTIONS(1198), + [anon_sym_POUND_LBRACK] = ACTIONS(1196), + [sym_string] = ACTIONS(1196), + [sym_boolean] = ACTIONS(1198), + [sym_null] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [aux_sym_include_expression_token1] = ACTIONS(1198), + [aux_sym_include_once_expression_token1] = ACTIONS(1198), + [aux_sym_require_expression_token1] = ACTIONS(1198), + [aux_sym_require_once_expression_token1] = ACTIONS(1198), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1191), + [sym_heredoc] = ACTIONS(1196), }, [485] = { [sym_text_interpolation] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_name] = ACTIONS(1197), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1195), - [aux_sym_function_static_declaration_token1] = ACTIONS(1197), - [aux_sym_global_declaration_token1] = ACTIONS(1197), - [aux_sym_namespace_definition_token1] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1197), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [aux_sym_trait_declaration_token1] = ACTIONS(1197), - [aux_sym_interface_declaration_token1] = ACTIONS(1197), - [aux_sym_class_declaration_token1] = ACTIONS(1197), - [aux_sym_class_modifier_token1] = ACTIONS(1197), - [aux_sym_class_modifier_token2] = ACTIONS(1197), - [aux_sym_visibility_modifier_token1] = ACTIONS(1197), - [aux_sym_visibility_modifier_token2] = ACTIONS(1197), - [aux_sym_visibility_modifier_token3] = ACTIONS(1197), - [aux_sym_arrow_function_token1] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_array] = ACTIONS(1197), - [anon_sym_unset] = ACTIONS(1197), - [aux_sym_echo_statement_token1] = ACTIONS(1197), - [anon_sym_declare] = ACTIONS(1197), - [aux_sym_declare_statement_token1] = ACTIONS(1197), - [sym_float] = ACTIONS(1197), - [aux_sym_try_statement_token1] = ACTIONS(1197), - [aux_sym_goto_statement_token1] = ACTIONS(1197), - [aux_sym_continue_statement_token1] = ACTIONS(1197), - [aux_sym_break_statement_token1] = ACTIONS(1197), - [sym_integer] = ACTIONS(1197), - [aux_sym_return_statement_token1] = ACTIONS(1197), - [aux_sym_throw_expression_token1] = ACTIONS(1197), - [aux_sym_while_statement_token1] = ACTIONS(1197), - [aux_sym_while_statement_token2] = ACTIONS(1197), - [aux_sym_do_statement_token1] = ACTIONS(1197), - [aux_sym_for_statement_token1] = ACTIONS(1197), - [aux_sym_for_statement_token2] = ACTIONS(1197), - [aux_sym_foreach_statement_token1] = ACTIONS(1197), - [aux_sym_foreach_statement_token2] = ACTIONS(1197), - [aux_sym_if_statement_token1] = ACTIONS(1197), - [aux_sym_if_statement_token2] = ACTIONS(1197), - [aux_sym_else_if_clause_token1] = ACTIONS(1197), - [aux_sym_else_clause_token1] = ACTIONS(1197), - [aux_sym_match_expression_token1] = ACTIONS(1197), - [aux_sym_match_default_expression_token1] = ACTIONS(1197), - [aux_sym_switch_statement_token1] = ACTIONS(1197), - [aux_sym_switch_block_token1] = ACTIONS(1197), - [aux_sym_case_statement_token1] = ACTIONS(1197), - [anon_sym_AT] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_clone] = ACTIONS(1197), - [anon_sym_print] = ACTIONS(1197), - [anon_sym_new] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [sym_shell_command_expression] = ACTIONS(1195), - [anon_sym_list] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_self] = ACTIONS(1197), - [anon_sym_parent] = ACTIONS(1197), - [anon_sym_POUND_LBRACK] = ACTIONS(1195), - [sym_string] = ACTIONS(1195), - [sym_boolean] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1195), - [anon_sym_yield] = ACTIONS(1197), - [aux_sym_include_expression_token1] = ACTIONS(1197), - [aux_sym_include_once_expression_token1] = ACTIONS(1197), - [aux_sym_require_expression_token1] = ACTIONS(1197), - [aux_sym_require_once_expression_token1] = ACTIONS(1197), + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_name] = ACTIONS(1202), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1200), + [aux_sym_function_static_declaration_token1] = ACTIONS(1202), + [aux_sym_global_declaration_token1] = ACTIONS(1202), + [aux_sym_namespace_definition_token1] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1202), + [anon_sym_BSLASH] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [aux_sym_trait_declaration_token1] = ACTIONS(1202), + [aux_sym_interface_declaration_token1] = ACTIONS(1202), + [aux_sym_class_declaration_token1] = ACTIONS(1202), + [aux_sym_final_modifier_token1] = ACTIONS(1202), + [aux_sym_abstract_modifier_token1] = ACTIONS(1202), + [aux_sym_visibility_modifier_token1] = ACTIONS(1202), + [aux_sym_visibility_modifier_token2] = ACTIONS(1202), + [aux_sym_visibility_modifier_token3] = ACTIONS(1202), + [aux_sym_arrow_function_token1] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_array] = ACTIONS(1202), + [anon_sym_unset] = ACTIONS(1202), + [aux_sym_echo_statement_token1] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(1202), + [aux_sym_declare_statement_token1] = ACTIONS(1202), + [sym_float] = ACTIONS(1202), + [aux_sym_try_statement_token1] = ACTIONS(1202), + [aux_sym_goto_statement_token1] = ACTIONS(1202), + [aux_sym_continue_statement_token1] = ACTIONS(1202), + [aux_sym_break_statement_token1] = ACTIONS(1202), + [sym_integer] = ACTIONS(1202), + [aux_sym_return_statement_token1] = ACTIONS(1202), + [aux_sym_throw_expression_token1] = ACTIONS(1202), + [aux_sym_while_statement_token1] = ACTIONS(1202), + [aux_sym_while_statement_token2] = ACTIONS(1202), + [aux_sym_do_statement_token1] = ACTIONS(1202), + [aux_sym_for_statement_token1] = ACTIONS(1202), + [aux_sym_for_statement_token2] = ACTIONS(1202), + [aux_sym_foreach_statement_token1] = ACTIONS(1202), + [aux_sym_foreach_statement_token2] = ACTIONS(1202), + [aux_sym_if_statement_token1] = ACTIONS(1202), + [aux_sym_if_statement_token2] = ACTIONS(1202), + [aux_sym_else_if_clause_token1] = ACTIONS(1202), + [aux_sym_else_clause_token1] = ACTIONS(1202), + [aux_sym_match_expression_token1] = ACTIONS(1202), + [aux_sym_match_default_expression_token1] = ACTIONS(1202), + [aux_sym_switch_statement_token1] = ACTIONS(1202), + [aux_sym_switch_block_token1] = ACTIONS(1202), + [aux_sym_case_statement_token1] = ACTIONS(1202), + [anon_sym_AT] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_clone] = ACTIONS(1202), + [anon_sym_print] = ACTIONS(1202), + [anon_sym_new] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [sym_shell_command_expression] = ACTIONS(1200), + [anon_sym_list] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_self] = ACTIONS(1202), + [anon_sym_parent] = ACTIONS(1202), + [anon_sym_POUND_LBRACK] = ACTIONS(1200), + [sym_string] = ACTIONS(1200), + [sym_boolean] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [anon_sym_DOLLAR] = ACTIONS(1200), + [anon_sym_yield] = ACTIONS(1202), + [aux_sym_include_expression_token1] = ACTIONS(1202), + [aux_sym_include_once_expression_token1] = ACTIONS(1202), + [aux_sym_require_expression_token1] = ACTIONS(1202), + [aux_sym_require_once_expression_token1] = ACTIONS(1202), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1195), + [sym_heredoc] = ACTIONS(1200), }, [486] = { [sym_text_interpolation] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_name] = ACTIONS(1201), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1199), - [aux_sym_function_static_declaration_token1] = ACTIONS(1201), - [aux_sym_global_declaration_token1] = ACTIONS(1201), - [aux_sym_namespace_definition_token1] = ACTIONS(1201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1201), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1201), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1201), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [aux_sym_trait_declaration_token1] = ACTIONS(1201), - [aux_sym_interface_declaration_token1] = ACTIONS(1201), - [aux_sym_class_declaration_token1] = ACTIONS(1201), - [aux_sym_class_modifier_token1] = ACTIONS(1201), - [aux_sym_class_modifier_token2] = ACTIONS(1201), - [aux_sym_visibility_modifier_token1] = ACTIONS(1201), - [aux_sym_visibility_modifier_token2] = ACTIONS(1201), - [aux_sym_visibility_modifier_token3] = ACTIONS(1201), - [aux_sym_arrow_function_token1] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_array] = ACTIONS(1201), - [anon_sym_unset] = ACTIONS(1201), - [aux_sym_echo_statement_token1] = ACTIONS(1201), - [anon_sym_declare] = ACTIONS(1201), - [aux_sym_declare_statement_token1] = ACTIONS(1201), - [sym_float] = ACTIONS(1201), - [aux_sym_try_statement_token1] = ACTIONS(1201), - [aux_sym_goto_statement_token1] = ACTIONS(1201), - [aux_sym_continue_statement_token1] = ACTIONS(1201), - [aux_sym_break_statement_token1] = ACTIONS(1201), - [sym_integer] = ACTIONS(1201), - [aux_sym_return_statement_token1] = ACTIONS(1201), - [aux_sym_throw_expression_token1] = ACTIONS(1201), - [aux_sym_while_statement_token1] = ACTIONS(1201), - [aux_sym_while_statement_token2] = ACTIONS(1201), - [aux_sym_do_statement_token1] = ACTIONS(1201), - [aux_sym_for_statement_token1] = ACTIONS(1201), - [aux_sym_for_statement_token2] = ACTIONS(1201), - [aux_sym_foreach_statement_token1] = ACTIONS(1201), - [aux_sym_foreach_statement_token2] = ACTIONS(1201), - [aux_sym_if_statement_token1] = ACTIONS(1201), - [aux_sym_if_statement_token2] = ACTIONS(1201), - [aux_sym_else_if_clause_token1] = ACTIONS(1201), - [aux_sym_else_clause_token1] = ACTIONS(1201), - [aux_sym_match_expression_token1] = ACTIONS(1201), - [aux_sym_match_default_expression_token1] = ACTIONS(1201), - [aux_sym_switch_statement_token1] = ACTIONS(1201), - [aux_sym_switch_block_token1] = ACTIONS(1201), - [aux_sym_case_statement_token1] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_clone] = ACTIONS(1201), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_new] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [sym_shell_command_expression] = ACTIONS(1199), - [anon_sym_list] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1199), - [anon_sym_self] = ACTIONS(1201), - [anon_sym_parent] = ACTIONS(1201), - [anon_sym_POUND_LBRACK] = ACTIONS(1199), - [sym_string] = ACTIONS(1199), - [sym_boolean] = ACTIONS(1201), - [sym_null] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1199), - [anon_sym_yield] = ACTIONS(1201), - [aux_sym_include_expression_token1] = ACTIONS(1201), - [aux_sym_include_once_expression_token1] = ACTIONS(1201), - [aux_sym_require_expression_token1] = ACTIONS(1201), - [aux_sym_require_once_expression_token1] = ACTIONS(1201), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_name] = ACTIONS(1206), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1204), + [aux_sym_function_static_declaration_token1] = ACTIONS(1206), + [aux_sym_global_declaration_token1] = ACTIONS(1206), + [aux_sym_namespace_definition_token1] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1206), + [anon_sym_BSLASH] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [aux_sym_trait_declaration_token1] = ACTIONS(1206), + [aux_sym_interface_declaration_token1] = ACTIONS(1206), + [aux_sym_class_declaration_token1] = ACTIONS(1206), + [aux_sym_final_modifier_token1] = ACTIONS(1206), + [aux_sym_abstract_modifier_token1] = ACTIONS(1206), + [aux_sym_visibility_modifier_token1] = ACTIONS(1206), + [aux_sym_visibility_modifier_token2] = ACTIONS(1206), + [aux_sym_visibility_modifier_token3] = ACTIONS(1206), + [aux_sym_arrow_function_token1] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_array] = ACTIONS(1206), + [anon_sym_unset] = ACTIONS(1206), + [aux_sym_echo_statement_token1] = ACTIONS(1206), + [anon_sym_declare] = ACTIONS(1206), + [aux_sym_declare_statement_token1] = ACTIONS(1206), + [sym_float] = ACTIONS(1206), + [aux_sym_try_statement_token1] = ACTIONS(1206), + [aux_sym_goto_statement_token1] = ACTIONS(1206), + [aux_sym_continue_statement_token1] = ACTIONS(1206), + [aux_sym_break_statement_token1] = ACTIONS(1206), + [sym_integer] = ACTIONS(1206), + [aux_sym_return_statement_token1] = ACTIONS(1206), + [aux_sym_throw_expression_token1] = ACTIONS(1206), + [aux_sym_while_statement_token1] = ACTIONS(1206), + [aux_sym_while_statement_token2] = ACTIONS(1206), + [aux_sym_do_statement_token1] = ACTIONS(1206), + [aux_sym_for_statement_token1] = ACTIONS(1206), + [aux_sym_for_statement_token2] = ACTIONS(1206), + [aux_sym_foreach_statement_token1] = ACTIONS(1206), + [aux_sym_foreach_statement_token2] = ACTIONS(1206), + [aux_sym_if_statement_token1] = ACTIONS(1206), + [aux_sym_if_statement_token2] = ACTIONS(1206), + [aux_sym_else_if_clause_token1] = ACTIONS(1206), + [aux_sym_else_clause_token1] = ACTIONS(1206), + [aux_sym_match_expression_token1] = ACTIONS(1206), + [aux_sym_match_default_expression_token1] = ACTIONS(1206), + [aux_sym_switch_statement_token1] = ACTIONS(1206), + [aux_sym_switch_block_token1] = ACTIONS(1206), + [aux_sym_case_statement_token1] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_clone] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1206), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [sym_shell_command_expression] = ACTIONS(1204), + [anon_sym_list] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_self] = ACTIONS(1206), + [anon_sym_parent] = ACTIONS(1206), + [anon_sym_POUND_LBRACK] = ACTIONS(1204), + [sym_string] = ACTIONS(1204), + [sym_boolean] = ACTIONS(1206), + [sym_null] = ACTIONS(1206), + [anon_sym_DOLLAR] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(1206), + [aux_sym_include_expression_token1] = ACTIONS(1206), + [aux_sym_include_once_expression_token1] = ACTIONS(1206), + [aux_sym_require_expression_token1] = ACTIONS(1206), + [aux_sym_require_once_expression_token1] = ACTIONS(1206), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1199), + [sym_heredoc] = ACTIONS(1204), }, [487] = { [sym_text_interpolation] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_name] = ACTIONS(1205), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1203), - [aux_sym_function_static_declaration_token1] = ACTIONS(1205), - [aux_sym_global_declaration_token1] = ACTIONS(1205), - [aux_sym_namespace_definition_token1] = ACTIONS(1205), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1205), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1205), - [anon_sym_BSLASH] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [aux_sym_trait_declaration_token1] = ACTIONS(1205), - [aux_sym_interface_declaration_token1] = ACTIONS(1205), - [aux_sym_class_declaration_token1] = ACTIONS(1205), - [aux_sym_class_modifier_token1] = ACTIONS(1205), - [aux_sym_class_modifier_token2] = ACTIONS(1205), - [aux_sym_visibility_modifier_token1] = ACTIONS(1205), - [aux_sym_visibility_modifier_token2] = ACTIONS(1205), - [aux_sym_visibility_modifier_token3] = ACTIONS(1205), - [aux_sym_arrow_function_token1] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_array] = ACTIONS(1205), - [anon_sym_unset] = ACTIONS(1205), - [aux_sym_echo_statement_token1] = ACTIONS(1205), - [anon_sym_declare] = ACTIONS(1205), - [aux_sym_declare_statement_token1] = ACTIONS(1205), - [sym_float] = ACTIONS(1205), - [aux_sym_try_statement_token1] = ACTIONS(1205), - [aux_sym_goto_statement_token1] = ACTIONS(1205), - [aux_sym_continue_statement_token1] = ACTIONS(1205), - [aux_sym_break_statement_token1] = ACTIONS(1205), - [sym_integer] = ACTIONS(1205), - [aux_sym_return_statement_token1] = ACTIONS(1205), - [aux_sym_throw_expression_token1] = ACTIONS(1205), - [aux_sym_while_statement_token1] = ACTIONS(1205), - [aux_sym_while_statement_token2] = ACTIONS(1205), - [aux_sym_do_statement_token1] = ACTIONS(1205), - [aux_sym_for_statement_token1] = ACTIONS(1205), - [aux_sym_for_statement_token2] = ACTIONS(1205), - [aux_sym_foreach_statement_token1] = ACTIONS(1205), - [aux_sym_foreach_statement_token2] = ACTIONS(1205), - [aux_sym_if_statement_token1] = ACTIONS(1205), - [aux_sym_if_statement_token2] = ACTIONS(1205), - [aux_sym_else_if_clause_token1] = ACTIONS(1205), - [aux_sym_else_clause_token1] = ACTIONS(1205), - [aux_sym_match_expression_token1] = ACTIONS(1205), - [aux_sym_match_default_expression_token1] = ACTIONS(1205), - [aux_sym_switch_statement_token1] = ACTIONS(1205), - [aux_sym_switch_block_token1] = ACTIONS(1205), - [aux_sym_case_statement_token1] = ACTIONS(1205), - [anon_sym_AT] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_clone] = ACTIONS(1205), - [anon_sym_print] = ACTIONS(1205), - [anon_sym_new] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [sym_shell_command_expression] = ACTIONS(1203), - [anon_sym_list] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_self] = ACTIONS(1205), - [anon_sym_parent] = ACTIONS(1205), - [anon_sym_POUND_LBRACK] = ACTIONS(1203), - [sym_string] = ACTIONS(1203), - [sym_boolean] = ACTIONS(1205), - [sym_null] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1203), - [anon_sym_yield] = ACTIONS(1205), - [aux_sym_include_expression_token1] = ACTIONS(1205), - [aux_sym_include_once_expression_token1] = ACTIONS(1205), - [aux_sym_require_expression_token1] = ACTIONS(1205), - [aux_sym_require_once_expression_token1] = ACTIONS(1205), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_name] = ACTIONS(1210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1208), + [aux_sym_function_static_declaration_token1] = ACTIONS(1210), + [aux_sym_global_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_definition_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1210), + [anon_sym_BSLASH] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [aux_sym_trait_declaration_token1] = ACTIONS(1210), + [aux_sym_interface_declaration_token1] = ACTIONS(1210), + [aux_sym_class_declaration_token1] = ACTIONS(1210), + [aux_sym_final_modifier_token1] = ACTIONS(1210), + [aux_sym_abstract_modifier_token1] = ACTIONS(1210), + [aux_sym_visibility_modifier_token1] = ACTIONS(1210), + [aux_sym_visibility_modifier_token2] = ACTIONS(1210), + [aux_sym_visibility_modifier_token3] = ACTIONS(1210), + [aux_sym_arrow_function_token1] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_array] = ACTIONS(1210), + [anon_sym_unset] = ACTIONS(1210), + [aux_sym_echo_statement_token1] = ACTIONS(1210), + [anon_sym_declare] = ACTIONS(1210), + [aux_sym_declare_statement_token1] = ACTIONS(1210), + [sym_float] = ACTIONS(1210), + [aux_sym_try_statement_token1] = ACTIONS(1210), + [aux_sym_goto_statement_token1] = ACTIONS(1210), + [aux_sym_continue_statement_token1] = ACTIONS(1210), + [aux_sym_break_statement_token1] = ACTIONS(1210), + [sym_integer] = ACTIONS(1210), + [aux_sym_return_statement_token1] = ACTIONS(1210), + [aux_sym_throw_expression_token1] = ACTIONS(1210), + [aux_sym_while_statement_token1] = ACTIONS(1210), + [aux_sym_while_statement_token2] = ACTIONS(1210), + [aux_sym_do_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token2] = ACTIONS(1210), + [aux_sym_foreach_statement_token1] = ACTIONS(1210), + [aux_sym_foreach_statement_token2] = ACTIONS(1210), + [aux_sym_if_statement_token1] = ACTIONS(1210), + [aux_sym_if_statement_token2] = ACTIONS(1210), + [aux_sym_else_if_clause_token1] = ACTIONS(1210), + [aux_sym_else_clause_token1] = ACTIONS(1210), + [aux_sym_match_expression_token1] = ACTIONS(1210), + [aux_sym_match_default_expression_token1] = ACTIONS(1210), + [aux_sym_switch_statement_token1] = ACTIONS(1210), + [aux_sym_switch_block_token1] = ACTIONS(1210), + [aux_sym_case_statement_token1] = ACTIONS(1210), + [anon_sym_AT] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_clone] = ACTIONS(1210), + [anon_sym_print] = ACTIONS(1210), + [anon_sym_new] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [sym_shell_command_expression] = ACTIONS(1208), + [anon_sym_list] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_self] = ACTIONS(1210), + [anon_sym_parent] = ACTIONS(1210), + [anon_sym_POUND_LBRACK] = ACTIONS(1208), + [sym_string] = ACTIONS(1208), + [sym_boolean] = ACTIONS(1210), + [sym_null] = ACTIONS(1210), + [anon_sym_DOLLAR] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1210), + [aux_sym_include_expression_token1] = ACTIONS(1210), + [aux_sym_include_once_expression_token1] = ACTIONS(1210), + [aux_sym_require_expression_token1] = ACTIONS(1210), + [aux_sym_require_once_expression_token1] = ACTIONS(1210), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1203), + [sym_heredoc] = ACTIONS(1208), }, [488] = { [sym_text_interpolation] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_name] = ACTIONS(1209), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1207), - [aux_sym_function_static_declaration_token1] = ACTIONS(1209), - [aux_sym_global_declaration_token1] = ACTIONS(1209), - [aux_sym_namespace_definition_token1] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1209), - [anon_sym_BSLASH] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [aux_sym_trait_declaration_token1] = ACTIONS(1209), - [aux_sym_interface_declaration_token1] = ACTIONS(1209), - [aux_sym_class_declaration_token1] = ACTIONS(1209), - [aux_sym_class_modifier_token1] = ACTIONS(1209), - [aux_sym_class_modifier_token2] = ACTIONS(1209), - [aux_sym_visibility_modifier_token1] = ACTIONS(1209), - [aux_sym_visibility_modifier_token2] = ACTIONS(1209), - [aux_sym_visibility_modifier_token3] = ACTIONS(1209), - [aux_sym_arrow_function_token1] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_array] = ACTIONS(1209), - [anon_sym_unset] = ACTIONS(1209), - [aux_sym_echo_statement_token1] = ACTIONS(1209), - [anon_sym_declare] = ACTIONS(1209), - [aux_sym_declare_statement_token1] = ACTIONS(1209), - [sym_float] = ACTIONS(1209), - [aux_sym_try_statement_token1] = ACTIONS(1209), - [aux_sym_goto_statement_token1] = ACTIONS(1209), - [aux_sym_continue_statement_token1] = ACTIONS(1209), - [aux_sym_break_statement_token1] = ACTIONS(1209), - [sym_integer] = ACTIONS(1209), - [aux_sym_return_statement_token1] = ACTIONS(1209), - [aux_sym_throw_expression_token1] = ACTIONS(1209), - [aux_sym_while_statement_token1] = ACTIONS(1209), - [aux_sym_while_statement_token2] = ACTIONS(1209), - [aux_sym_do_statement_token1] = ACTIONS(1209), - [aux_sym_for_statement_token1] = ACTIONS(1209), - [aux_sym_for_statement_token2] = ACTIONS(1209), - [aux_sym_foreach_statement_token1] = ACTIONS(1209), - [aux_sym_foreach_statement_token2] = ACTIONS(1209), - [aux_sym_if_statement_token1] = ACTIONS(1209), - [aux_sym_if_statement_token2] = ACTIONS(1209), - [aux_sym_else_if_clause_token1] = ACTIONS(1209), - [aux_sym_else_clause_token1] = ACTIONS(1209), - [aux_sym_match_expression_token1] = ACTIONS(1209), - [aux_sym_match_default_expression_token1] = ACTIONS(1209), - [aux_sym_switch_statement_token1] = ACTIONS(1209), - [aux_sym_switch_block_token1] = ACTIONS(1209), - [aux_sym_case_statement_token1] = ACTIONS(1209), - [anon_sym_AT] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_clone] = ACTIONS(1209), - [anon_sym_print] = ACTIONS(1209), - [anon_sym_new] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [sym_shell_command_expression] = ACTIONS(1207), - [anon_sym_list] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1207), - [anon_sym_self] = ACTIONS(1209), - [anon_sym_parent] = ACTIONS(1209), - [anon_sym_POUND_LBRACK] = ACTIONS(1207), - [sym_string] = ACTIONS(1207), - [sym_boolean] = ACTIONS(1209), - [sym_null] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_yield] = ACTIONS(1209), - [aux_sym_include_expression_token1] = ACTIONS(1209), - [aux_sym_include_once_expression_token1] = ACTIONS(1209), - [aux_sym_require_expression_token1] = ACTIONS(1209), - [aux_sym_require_once_expression_token1] = ACTIONS(1209), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_name] = ACTIONS(1214), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1212), + [aux_sym_function_static_declaration_token1] = ACTIONS(1214), + [aux_sym_global_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_definition_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [aux_sym_trait_declaration_token1] = ACTIONS(1214), + [aux_sym_interface_declaration_token1] = ACTIONS(1214), + [aux_sym_class_declaration_token1] = ACTIONS(1214), + [aux_sym_final_modifier_token1] = ACTIONS(1214), + [aux_sym_abstract_modifier_token1] = ACTIONS(1214), + [aux_sym_visibility_modifier_token1] = ACTIONS(1214), + [aux_sym_visibility_modifier_token2] = ACTIONS(1214), + [aux_sym_visibility_modifier_token3] = ACTIONS(1214), + [aux_sym_arrow_function_token1] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_array] = ACTIONS(1214), + [anon_sym_unset] = ACTIONS(1214), + [aux_sym_echo_statement_token1] = ACTIONS(1214), + [anon_sym_declare] = ACTIONS(1214), + [aux_sym_declare_statement_token1] = ACTIONS(1214), + [sym_float] = ACTIONS(1214), + [aux_sym_try_statement_token1] = ACTIONS(1214), + [aux_sym_goto_statement_token1] = ACTIONS(1214), + [aux_sym_continue_statement_token1] = ACTIONS(1214), + [aux_sym_break_statement_token1] = ACTIONS(1214), + [sym_integer] = ACTIONS(1214), + [aux_sym_return_statement_token1] = ACTIONS(1214), + [aux_sym_throw_expression_token1] = ACTIONS(1214), + [aux_sym_while_statement_token1] = ACTIONS(1214), + [aux_sym_while_statement_token2] = ACTIONS(1214), + [aux_sym_do_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token2] = ACTIONS(1214), + [aux_sym_foreach_statement_token1] = ACTIONS(1214), + [aux_sym_foreach_statement_token2] = ACTIONS(1214), + [aux_sym_if_statement_token1] = ACTIONS(1214), + [aux_sym_if_statement_token2] = ACTIONS(1214), + [aux_sym_else_if_clause_token1] = ACTIONS(1214), + [aux_sym_else_clause_token1] = ACTIONS(1214), + [aux_sym_match_expression_token1] = ACTIONS(1214), + [aux_sym_match_default_expression_token1] = ACTIONS(1214), + [aux_sym_switch_statement_token1] = ACTIONS(1214), + [aux_sym_switch_block_token1] = ACTIONS(1214), + [aux_sym_case_statement_token1] = ACTIONS(1214), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_clone] = ACTIONS(1214), + [anon_sym_print] = ACTIONS(1214), + [anon_sym_new] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [sym_shell_command_expression] = ACTIONS(1212), + [anon_sym_list] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_self] = ACTIONS(1214), + [anon_sym_parent] = ACTIONS(1214), + [anon_sym_POUND_LBRACK] = ACTIONS(1212), + [sym_string] = ACTIONS(1212), + [sym_boolean] = ACTIONS(1214), + [sym_null] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [aux_sym_include_expression_token1] = ACTIONS(1214), + [aux_sym_include_once_expression_token1] = ACTIONS(1214), + [aux_sym_require_expression_token1] = ACTIONS(1214), + [aux_sym_require_once_expression_token1] = ACTIONS(1214), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1207), + [sym_heredoc] = ACTIONS(1212), }, [489] = { [sym_text_interpolation] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_name] = ACTIONS(1209), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1207), - [aux_sym_function_static_declaration_token1] = ACTIONS(1209), - [aux_sym_global_declaration_token1] = ACTIONS(1209), - [aux_sym_namespace_definition_token1] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1209), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1209), - [anon_sym_BSLASH] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [aux_sym_trait_declaration_token1] = ACTIONS(1209), - [aux_sym_interface_declaration_token1] = ACTIONS(1209), - [aux_sym_class_declaration_token1] = ACTIONS(1209), - [aux_sym_class_modifier_token1] = ACTIONS(1209), - [aux_sym_class_modifier_token2] = ACTIONS(1209), - [aux_sym_visibility_modifier_token1] = ACTIONS(1209), - [aux_sym_visibility_modifier_token2] = ACTIONS(1209), - [aux_sym_visibility_modifier_token3] = ACTIONS(1209), - [aux_sym_arrow_function_token1] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_array] = ACTIONS(1209), - [anon_sym_unset] = ACTIONS(1209), - [aux_sym_echo_statement_token1] = ACTIONS(1209), - [anon_sym_declare] = ACTIONS(1209), - [aux_sym_declare_statement_token1] = ACTIONS(1209), - [sym_float] = ACTIONS(1209), - [aux_sym_try_statement_token1] = ACTIONS(1209), - [aux_sym_goto_statement_token1] = ACTIONS(1209), - [aux_sym_continue_statement_token1] = ACTIONS(1209), - [aux_sym_break_statement_token1] = ACTIONS(1209), - [sym_integer] = ACTIONS(1209), - [aux_sym_return_statement_token1] = ACTIONS(1209), - [aux_sym_throw_expression_token1] = ACTIONS(1209), - [aux_sym_while_statement_token1] = ACTIONS(1209), - [aux_sym_while_statement_token2] = ACTIONS(1209), - [aux_sym_do_statement_token1] = ACTIONS(1209), - [aux_sym_for_statement_token1] = ACTIONS(1209), - [aux_sym_for_statement_token2] = ACTIONS(1209), - [aux_sym_foreach_statement_token1] = ACTIONS(1209), - [aux_sym_foreach_statement_token2] = ACTIONS(1209), - [aux_sym_if_statement_token1] = ACTIONS(1209), - [aux_sym_if_statement_token2] = ACTIONS(1209), - [aux_sym_else_if_clause_token1] = ACTIONS(1209), - [aux_sym_else_clause_token1] = ACTIONS(1209), - [aux_sym_match_expression_token1] = ACTIONS(1209), - [aux_sym_match_default_expression_token1] = ACTIONS(1209), - [aux_sym_switch_statement_token1] = ACTIONS(1209), - [aux_sym_switch_block_token1] = ACTIONS(1209), - [aux_sym_case_statement_token1] = ACTIONS(1209), - [anon_sym_AT] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_clone] = ACTIONS(1209), - [anon_sym_print] = ACTIONS(1209), - [anon_sym_new] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [sym_shell_command_expression] = ACTIONS(1207), - [anon_sym_list] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1207), - [anon_sym_self] = ACTIONS(1209), - [anon_sym_parent] = ACTIONS(1209), - [anon_sym_POUND_LBRACK] = ACTIONS(1207), - [sym_string] = ACTIONS(1207), - [sym_boolean] = ACTIONS(1209), - [sym_null] = ACTIONS(1209), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_yield] = ACTIONS(1209), - [aux_sym_include_expression_token1] = ACTIONS(1209), - [aux_sym_include_once_expression_token1] = ACTIONS(1209), - [aux_sym_require_expression_token1] = ACTIONS(1209), - [aux_sym_require_once_expression_token1] = ACTIONS(1209), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_name] = ACTIONS(1210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1208), + [aux_sym_function_static_declaration_token1] = ACTIONS(1210), + [aux_sym_global_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_definition_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1210), + [anon_sym_BSLASH] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [aux_sym_trait_declaration_token1] = ACTIONS(1210), + [aux_sym_interface_declaration_token1] = ACTIONS(1210), + [aux_sym_class_declaration_token1] = ACTIONS(1210), + [aux_sym_final_modifier_token1] = ACTIONS(1210), + [aux_sym_abstract_modifier_token1] = ACTIONS(1210), + [aux_sym_visibility_modifier_token1] = ACTIONS(1210), + [aux_sym_visibility_modifier_token2] = ACTIONS(1210), + [aux_sym_visibility_modifier_token3] = ACTIONS(1210), + [aux_sym_arrow_function_token1] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_array] = ACTIONS(1210), + [anon_sym_unset] = ACTIONS(1210), + [aux_sym_echo_statement_token1] = ACTIONS(1210), + [anon_sym_declare] = ACTIONS(1210), + [aux_sym_declare_statement_token1] = ACTIONS(1210), + [sym_float] = ACTIONS(1210), + [aux_sym_try_statement_token1] = ACTIONS(1210), + [aux_sym_goto_statement_token1] = ACTIONS(1210), + [aux_sym_continue_statement_token1] = ACTIONS(1210), + [aux_sym_break_statement_token1] = ACTIONS(1210), + [sym_integer] = ACTIONS(1210), + [aux_sym_return_statement_token1] = ACTIONS(1210), + [aux_sym_throw_expression_token1] = ACTIONS(1210), + [aux_sym_while_statement_token1] = ACTIONS(1210), + [aux_sym_while_statement_token2] = ACTIONS(1210), + [aux_sym_do_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token2] = ACTIONS(1210), + [aux_sym_foreach_statement_token1] = ACTIONS(1210), + [aux_sym_foreach_statement_token2] = ACTIONS(1210), + [aux_sym_if_statement_token1] = ACTIONS(1210), + [aux_sym_if_statement_token2] = ACTIONS(1210), + [aux_sym_else_if_clause_token1] = ACTIONS(1210), + [aux_sym_else_clause_token1] = ACTIONS(1210), + [aux_sym_match_expression_token1] = ACTIONS(1210), + [aux_sym_match_default_expression_token1] = ACTIONS(1210), + [aux_sym_switch_statement_token1] = ACTIONS(1210), + [aux_sym_switch_block_token1] = ACTIONS(1210), + [aux_sym_case_statement_token1] = ACTIONS(1210), + [anon_sym_AT] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_clone] = ACTIONS(1210), + [anon_sym_print] = ACTIONS(1210), + [anon_sym_new] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [sym_shell_command_expression] = ACTIONS(1208), + [anon_sym_list] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_self] = ACTIONS(1210), + [anon_sym_parent] = ACTIONS(1210), + [anon_sym_POUND_LBRACK] = ACTIONS(1208), + [sym_string] = ACTIONS(1208), + [sym_boolean] = ACTIONS(1210), + [sym_null] = ACTIONS(1210), + [anon_sym_DOLLAR] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1210), + [aux_sym_include_expression_token1] = ACTIONS(1210), + [aux_sym_include_once_expression_token1] = ACTIONS(1210), + [aux_sym_require_expression_token1] = ACTIONS(1210), + [aux_sym_require_once_expression_token1] = ACTIONS(1210), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1207), + [sym_heredoc] = ACTIONS(1208), }, [490] = { [sym_text_interpolation] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1211), - [sym_name] = ACTIONS(1213), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1211), - [aux_sym_function_static_declaration_token1] = ACTIONS(1213), - [aux_sym_global_declaration_token1] = ACTIONS(1213), - [aux_sym_namespace_definition_token1] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1213), - [anon_sym_BSLASH] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1211), - [aux_sym_trait_declaration_token1] = ACTIONS(1213), - [aux_sym_interface_declaration_token1] = ACTIONS(1213), - [aux_sym_class_declaration_token1] = ACTIONS(1213), - [aux_sym_class_modifier_token1] = ACTIONS(1213), - [aux_sym_class_modifier_token2] = ACTIONS(1213), - [aux_sym_visibility_modifier_token1] = ACTIONS(1213), - [aux_sym_visibility_modifier_token2] = ACTIONS(1213), - [aux_sym_visibility_modifier_token3] = ACTIONS(1213), - [aux_sym_arrow_function_token1] = ACTIONS(1213), - [anon_sym_LPAREN] = ACTIONS(1211), - [anon_sym_array] = ACTIONS(1213), - [anon_sym_unset] = ACTIONS(1213), - [aux_sym_echo_statement_token1] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [aux_sym_declare_statement_token1] = ACTIONS(1213), - [sym_float] = ACTIONS(1213), - [aux_sym_try_statement_token1] = ACTIONS(1213), - [aux_sym_goto_statement_token1] = ACTIONS(1213), - [aux_sym_continue_statement_token1] = ACTIONS(1213), - [aux_sym_break_statement_token1] = ACTIONS(1213), - [sym_integer] = ACTIONS(1213), - [aux_sym_return_statement_token1] = ACTIONS(1213), - [aux_sym_throw_expression_token1] = ACTIONS(1213), - [aux_sym_while_statement_token1] = ACTIONS(1213), - [aux_sym_while_statement_token2] = ACTIONS(1213), - [aux_sym_do_statement_token1] = ACTIONS(1213), - [aux_sym_for_statement_token1] = ACTIONS(1213), - [aux_sym_for_statement_token2] = ACTIONS(1213), - [aux_sym_foreach_statement_token1] = ACTIONS(1213), - [aux_sym_foreach_statement_token2] = ACTIONS(1213), - [aux_sym_if_statement_token1] = ACTIONS(1213), - [aux_sym_if_statement_token2] = ACTIONS(1213), - [aux_sym_else_if_clause_token1] = ACTIONS(1213), - [aux_sym_else_clause_token1] = ACTIONS(1213), - [aux_sym_match_expression_token1] = ACTIONS(1213), - [aux_sym_match_default_expression_token1] = ACTIONS(1213), - [aux_sym_switch_statement_token1] = ACTIONS(1213), - [aux_sym_switch_block_token1] = ACTIONS(1213), - [aux_sym_case_statement_token1] = ACTIONS(1213), - [anon_sym_AT] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_clone] = ACTIONS(1213), - [anon_sym_print] = ACTIONS(1213), - [anon_sym_new] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [sym_shell_command_expression] = ACTIONS(1211), - [anon_sym_list] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_self] = ACTIONS(1213), - [anon_sym_parent] = ACTIONS(1213), - [anon_sym_POUND_LBRACK] = ACTIONS(1211), - [sym_string] = ACTIONS(1211), - [sym_boolean] = ACTIONS(1213), - [sym_null] = ACTIONS(1213), - [anon_sym_DOLLAR] = ACTIONS(1211), - [anon_sym_yield] = ACTIONS(1213), - [aux_sym_include_expression_token1] = ACTIONS(1213), - [aux_sym_include_once_expression_token1] = ACTIONS(1213), - [aux_sym_require_expression_token1] = ACTIONS(1213), - [aux_sym_require_once_expression_token1] = ACTIONS(1213), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_name] = ACTIONS(1218), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1216), + [aux_sym_function_static_declaration_token1] = ACTIONS(1218), + [aux_sym_global_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_definition_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1218), + [anon_sym_BSLASH] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [aux_sym_trait_declaration_token1] = ACTIONS(1218), + [aux_sym_interface_declaration_token1] = ACTIONS(1218), + [aux_sym_class_declaration_token1] = ACTIONS(1218), + [aux_sym_final_modifier_token1] = ACTIONS(1218), + [aux_sym_abstract_modifier_token1] = ACTIONS(1218), + [aux_sym_visibility_modifier_token1] = ACTIONS(1218), + [aux_sym_visibility_modifier_token2] = ACTIONS(1218), + [aux_sym_visibility_modifier_token3] = ACTIONS(1218), + [aux_sym_arrow_function_token1] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_array] = ACTIONS(1218), + [anon_sym_unset] = ACTIONS(1218), + [aux_sym_echo_statement_token1] = ACTIONS(1218), + [anon_sym_declare] = ACTIONS(1218), + [aux_sym_declare_statement_token1] = ACTIONS(1218), + [sym_float] = ACTIONS(1218), + [aux_sym_try_statement_token1] = ACTIONS(1218), + [aux_sym_goto_statement_token1] = ACTIONS(1218), + [aux_sym_continue_statement_token1] = ACTIONS(1218), + [aux_sym_break_statement_token1] = ACTIONS(1218), + [sym_integer] = ACTIONS(1218), + [aux_sym_return_statement_token1] = ACTIONS(1218), + [aux_sym_throw_expression_token1] = ACTIONS(1218), + [aux_sym_while_statement_token1] = ACTIONS(1218), + [aux_sym_while_statement_token2] = ACTIONS(1218), + [aux_sym_do_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token2] = ACTIONS(1218), + [aux_sym_foreach_statement_token1] = ACTIONS(1218), + [aux_sym_foreach_statement_token2] = ACTIONS(1218), + [aux_sym_if_statement_token1] = ACTIONS(1218), + [aux_sym_if_statement_token2] = ACTIONS(1218), + [aux_sym_else_if_clause_token1] = ACTIONS(1218), + [aux_sym_else_clause_token1] = ACTIONS(1218), + [aux_sym_match_expression_token1] = ACTIONS(1218), + [aux_sym_match_default_expression_token1] = ACTIONS(1218), + [aux_sym_switch_statement_token1] = ACTIONS(1218), + [aux_sym_switch_block_token1] = ACTIONS(1218), + [aux_sym_case_statement_token1] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_clone] = ACTIONS(1218), + [anon_sym_print] = ACTIONS(1218), + [anon_sym_new] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [sym_shell_command_expression] = ACTIONS(1216), + [anon_sym_list] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_self] = ACTIONS(1218), + [anon_sym_parent] = ACTIONS(1218), + [anon_sym_POUND_LBRACK] = ACTIONS(1216), + [sym_string] = ACTIONS(1216), + [sym_boolean] = ACTIONS(1218), + [sym_null] = ACTIONS(1218), + [anon_sym_DOLLAR] = ACTIONS(1216), + [anon_sym_yield] = ACTIONS(1218), + [aux_sym_include_expression_token1] = ACTIONS(1218), + [aux_sym_include_once_expression_token1] = ACTIONS(1218), + [aux_sym_require_expression_token1] = ACTIONS(1218), + [aux_sym_require_once_expression_token1] = ACTIONS(1218), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1211), + [sym_heredoc] = ACTIONS(1216), }, [491] = { [sym_text_interpolation] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(1215), - [sym_name] = ACTIONS(1217), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1215), - [aux_sym_function_static_declaration_token1] = ACTIONS(1217), - [aux_sym_global_declaration_token1] = ACTIONS(1217), - [aux_sym_namespace_definition_token1] = ACTIONS(1217), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1217), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1217), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1217), - [anon_sym_BSLASH] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_RBRACE] = ACTIONS(1215), - [aux_sym_trait_declaration_token1] = ACTIONS(1217), - [aux_sym_interface_declaration_token1] = ACTIONS(1217), - [aux_sym_class_declaration_token1] = ACTIONS(1217), - [aux_sym_class_modifier_token1] = ACTIONS(1217), - [aux_sym_class_modifier_token2] = ACTIONS(1217), - [aux_sym_visibility_modifier_token1] = ACTIONS(1217), - [aux_sym_visibility_modifier_token2] = ACTIONS(1217), - [aux_sym_visibility_modifier_token3] = ACTIONS(1217), - [aux_sym_arrow_function_token1] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1215), - [anon_sym_array] = ACTIONS(1217), - [anon_sym_unset] = ACTIONS(1217), - [aux_sym_echo_statement_token1] = ACTIONS(1217), - [anon_sym_declare] = ACTIONS(1217), - [aux_sym_declare_statement_token1] = ACTIONS(1217), - [sym_float] = ACTIONS(1217), - [aux_sym_try_statement_token1] = ACTIONS(1217), - [aux_sym_goto_statement_token1] = ACTIONS(1217), - [aux_sym_continue_statement_token1] = ACTIONS(1217), - [aux_sym_break_statement_token1] = ACTIONS(1217), - [sym_integer] = ACTIONS(1217), - [aux_sym_return_statement_token1] = ACTIONS(1217), - [aux_sym_throw_expression_token1] = ACTIONS(1217), - [aux_sym_while_statement_token1] = ACTIONS(1217), - [aux_sym_while_statement_token2] = ACTIONS(1217), - [aux_sym_do_statement_token1] = ACTIONS(1217), - [aux_sym_for_statement_token1] = ACTIONS(1217), - [aux_sym_for_statement_token2] = ACTIONS(1217), - [aux_sym_foreach_statement_token1] = ACTIONS(1217), - [aux_sym_foreach_statement_token2] = ACTIONS(1217), - [aux_sym_if_statement_token1] = ACTIONS(1217), - [aux_sym_if_statement_token2] = ACTIONS(1217), - [aux_sym_else_if_clause_token1] = ACTIONS(1217), - [aux_sym_else_clause_token1] = ACTIONS(1217), - [aux_sym_match_expression_token1] = ACTIONS(1217), - [aux_sym_match_default_expression_token1] = ACTIONS(1217), - [aux_sym_switch_statement_token1] = ACTIONS(1217), - [aux_sym_switch_block_token1] = ACTIONS(1217), - [aux_sym_case_statement_token1] = ACTIONS(1217), - [anon_sym_AT] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_clone] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1217), - [anon_sym_new] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [sym_shell_command_expression] = ACTIONS(1215), - [anon_sym_list] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1215), - [anon_sym_self] = ACTIONS(1217), - [anon_sym_parent] = ACTIONS(1217), - [anon_sym_POUND_LBRACK] = ACTIONS(1215), - [sym_string] = ACTIONS(1215), - [sym_boolean] = ACTIONS(1217), - [sym_null] = ACTIONS(1217), - [anon_sym_DOLLAR] = ACTIONS(1215), - [anon_sym_yield] = ACTIONS(1217), - [aux_sym_include_expression_token1] = ACTIONS(1217), - [aux_sym_include_once_expression_token1] = ACTIONS(1217), - [aux_sym_require_expression_token1] = ACTIONS(1217), - [aux_sym_require_once_expression_token1] = ACTIONS(1217), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_name] = ACTIONS(1222), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1220), + [aux_sym_function_static_declaration_token1] = ACTIONS(1222), + [aux_sym_global_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_definition_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1222), + [anon_sym_BSLASH] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [aux_sym_trait_declaration_token1] = ACTIONS(1222), + [aux_sym_interface_declaration_token1] = ACTIONS(1222), + [aux_sym_class_declaration_token1] = ACTIONS(1222), + [aux_sym_final_modifier_token1] = ACTIONS(1222), + [aux_sym_abstract_modifier_token1] = ACTIONS(1222), + [aux_sym_visibility_modifier_token1] = ACTIONS(1222), + [aux_sym_visibility_modifier_token2] = ACTIONS(1222), + [aux_sym_visibility_modifier_token3] = ACTIONS(1222), + [aux_sym_arrow_function_token1] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_array] = ACTIONS(1222), + [anon_sym_unset] = ACTIONS(1222), + [aux_sym_echo_statement_token1] = ACTIONS(1222), + [anon_sym_declare] = ACTIONS(1222), + [aux_sym_declare_statement_token1] = ACTIONS(1222), + [sym_float] = ACTIONS(1222), + [aux_sym_try_statement_token1] = ACTIONS(1222), + [aux_sym_goto_statement_token1] = ACTIONS(1222), + [aux_sym_continue_statement_token1] = ACTIONS(1222), + [aux_sym_break_statement_token1] = ACTIONS(1222), + [sym_integer] = ACTIONS(1222), + [aux_sym_return_statement_token1] = ACTIONS(1222), + [aux_sym_throw_expression_token1] = ACTIONS(1222), + [aux_sym_while_statement_token1] = ACTIONS(1222), + [aux_sym_while_statement_token2] = ACTIONS(1222), + [aux_sym_do_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token2] = ACTIONS(1222), + [aux_sym_foreach_statement_token1] = ACTIONS(1222), + [aux_sym_foreach_statement_token2] = ACTIONS(1222), + [aux_sym_if_statement_token1] = ACTIONS(1222), + [aux_sym_if_statement_token2] = ACTIONS(1222), + [aux_sym_else_if_clause_token1] = ACTIONS(1222), + [aux_sym_else_clause_token1] = ACTIONS(1222), + [aux_sym_match_expression_token1] = ACTIONS(1222), + [aux_sym_match_default_expression_token1] = ACTIONS(1222), + [aux_sym_switch_statement_token1] = ACTIONS(1222), + [aux_sym_switch_block_token1] = ACTIONS(1222), + [aux_sym_case_statement_token1] = ACTIONS(1222), + [anon_sym_AT] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_clone] = ACTIONS(1222), + [anon_sym_print] = ACTIONS(1222), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [sym_shell_command_expression] = ACTIONS(1220), + [anon_sym_list] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_self] = ACTIONS(1222), + [anon_sym_parent] = ACTIONS(1222), + [anon_sym_POUND_LBRACK] = ACTIONS(1220), + [sym_string] = ACTIONS(1220), + [sym_boolean] = ACTIONS(1222), + [sym_null] = ACTIONS(1222), + [anon_sym_DOLLAR] = ACTIONS(1220), + [anon_sym_yield] = ACTIONS(1222), + [aux_sym_include_expression_token1] = ACTIONS(1222), + [aux_sym_include_once_expression_token1] = ACTIONS(1222), + [aux_sym_require_expression_token1] = ACTIONS(1222), + [aux_sym_require_once_expression_token1] = ACTIONS(1222), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1215), + [sym_heredoc] = ACTIONS(1220), }, [492] = { [sym_text_interpolation] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1211), - [sym_name] = ACTIONS(1213), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1211), - [aux_sym_function_static_declaration_token1] = ACTIONS(1213), - [aux_sym_global_declaration_token1] = ACTIONS(1213), - [aux_sym_namespace_definition_token1] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1213), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1213), - [anon_sym_BSLASH] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1211), - [aux_sym_trait_declaration_token1] = ACTIONS(1213), - [aux_sym_interface_declaration_token1] = ACTIONS(1213), - [aux_sym_class_declaration_token1] = ACTIONS(1213), - [aux_sym_class_modifier_token1] = ACTIONS(1213), - [aux_sym_class_modifier_token2] = ACTIONS(1213), - [aux_sym_visibility_modifier_token1] = ACTIONS(1213), - [aux_sym_visibility_modifier_token2] = ACTIONS(1213), - [aux_sym_visibility_modifier_token3] = ACTIONS(1213), - [aux_sym_arrow_function_token1] = ACTIONS(1213), - [anon_sym_LPAREN] = ACTIONS(1211), - [anon_sym_array] = ACTIONS(1213), - [anon_sym_unset] = ACTIONS(1213), - [aux_sym_echo_statement_token1] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [aux_sym_declare_statement_token1] = ACTIONS(1213), - [sym_float] = ACTIONS(1213), - [aux_sym_try_statement_token1] = ACTIONS(1213), - [aux_sym_goto_statement_token1] = ACTIONS(1213), - [aux_sym_continue_statement_token1] = ACTIONS(1213), - [aux_sym_break_statement_token1] = ACTIONS(1213), - [sym_integer] = ACTIONS(1213), - [aux_sym_return_statement_token1] = ACTIONS(1213), - [aux_sym_throw_expression_token1] = ACTIONS(1213), - [aux_sym_while_statement_token1] = ACTIONS(1213), - [aux_sym_while_statement_token2] = ACTIONS(1213), - [aux_sym_do_statement_token1] = ACTIONS(1213), - [aux_sym_for_statement_token1] = ACTIONS(1213), - [aux_sym_for_statement_token2] = ACTIONS(1213), - [aux_sym_foreach_statement_token1] = ACTIONS(1213), - [aux_sym_foreach_statement_token2] = ACTIONS(1213), - [aux_sym_if_statement_token1] = ACTIONS(1213), - [aux_sym_if_statement_token2] = ACTIONS(1213), - [aux_sym_else_if_clause_token1] = ACTIONS(1213), - [aux_sym_else_clause_token1] = ACTIONS(1213), - [aux_sym_match_expression_token1] = ACTIONS(1213), - [aux_sym_match_default_expression_token1] = ACTIONS(1213), - [aux_sym_switch_statement_token1] = ACTIONS(1213), - [aux_sym_switch_block_token1] = ACTIONS(1213), - [aux_sym_case_statement_token1] = ACTIONS(1213), - [anon_sym_AT] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_clone] = ACTIONS(1213), - [anon_sym_print] = ACTIONS(1213), - [anon_sym_new] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [sym_shell_command_expression] = ACTIONS(1211), - [anon_sym_list] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_self] = ACTIONS(1213), - [anon_sym_parent] = ACTIONS(1213), - [anon_sym_POUND_LBRACK] = ACTIONS(1211), - [sym_string] = ACTIONS(1211), - [sym_boolean] = ACTIONS(1213), - [sym_null] = ACTIONS(1213), - [anon_sym_DOLLAR] = ACTIONS(1211), - [anon_sym_yield] = ACTIONS(1213), - [aux_sym_include_expression_token1] = ACTIONS(1213), - [aux_sym_include_once_expression_token1] = ACTIONS(1213), - [aux_sym_require_expression_token1] = ACTIONS(1213), - [aux_sym_require_once_expression_token1] = ACTIONS(1213), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_name] = ACTIONS(1218), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1216), + [aux_sym_function_static_declaration_token1] = ACTIONS(1218), + [aux_sym_global_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_definition_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1218), + [anon_sym_BSLASH] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [aux_sym_trait_declaration_token1] = ACTIONS(1218), + [aux_sym_interface_declaration_token1] = ACTIONS(1218), + [aux_sym_class_declaration_token1] = ACTIONS(1218), + [aux_sym_final_modifier_token1] = ACTIONS(1218), + [aux_sym_abstract_modifier_token1] = ACTIONS(1218), + [aux_sym_visibility_modifier_token1] = ACTIONS(1218), + [aux_sym_visibility_modifier_token2] = ACTIONS(1218), + [aux_sym_visibility_modifier_token3] = ACTIONS(1218), + [aux_sym_arrow_function_token1] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_array] = ACTIONS(1218), + [anon_sym_unset] = ACTIONS(1218), + [aux_sym_echo_statement_token1] = ACTIONS(1218), + [anon_sym_declare] = ACTIONS(1218), + [aux_sym_declare_statement_token1] = ACTIONS(1218), + [sym_float] = ACTIONS(1218), + [aux_sym_try_statement_token1] = ACTIONS(1218), + [aux_sym_goto_statement_token1] = ACTIONS(1218), + [aux_sym_continue_statement_token1] = ACTIONS(1218), + [aux_sym_break_statement_token1] = ACTIONS(1218), + [sym_integer] = ACTIONS(1218), + [aux_sym_return_statement_token1] = ACTIONS(1218), + [aux_sym_throw_expression_token1] = ACTIONS(1218), + [aux_sym_while_statement_token1] = ACTIONS(1218), + [aux_sym_while_statement_token2] = ACTIONS(1218), + [aux_sym_do_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token2] = ACTIONS(1218), + [aux_sym_foreach_statement_token1] = ACTIONS(1218), + [aux_sym_foreach_statement_token2] = ACTIONS(1218), + [aux_sym_if_statement_token1] = ACTIONS(1218), + [aux_sym_if_statement_token2] = ACTIONS(1218), + [aux_sym_else_if_clause_token1] = ACTIONS(1218), + [aux_sym_else_clause_token1] = ACTIONS(1218), + [aux_sym_match_expression_token1] = ACTIONS(1218), + [aux_sym_match_default_expression_token1] = ACTIONS(1218), + [aux_sym_switch_statement_token1] = ACTIONS(1218), + [aux_sym_switch_block_token1] = ACTIONS(1218), + [aux_sym_case_statement_token1] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_clone] = ACTIONS(1218), + [anon_sym_print] = ACTIONS(1218), + [anon_sym_new] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [sym_shell_command_expression] = ACTIONS(1216), + [anon_sym_list] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_self] = ACTIONS(1218), + [anon_sym_parent] = ACTIONS(1218), + [anon_sym_POUND_LBRACK] = ACTIONS(1216), + [sym_string] = ACTIONS(1216), + [sym_boolean] = ACTIONS(1218), + [sym_null] = ACTIONS(1218), + [anon_sym_DOLLAR] = ACTIONS(1216), + [anon_sym_yield] = ACTIONS(1218), + [aux_sym_include_expression_token1] = ACTIONS(1218), + [aux_sym_include_once_expression_token1] = ACTIONS(1218), + [aux_sym_require_expression_token1] = ACTIONS(1218), + [aux_sym_require_once_expression_token1] = ACTIONS(1218), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1211), + [sym_heredoc] = ACTIONS(1216), }, [493] = { [sym_text_interpolation] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1219), - [sym_name] = ACTIONS(1221), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1219), - [aux_sym_function_static_declaration_token1] = ACTIONS(1221), - [aux_sym_global_declaration_token1] = ACTIONS(1221), - [aux_sym_namespace_definition_token1] = ACTIONS(1221), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1221), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1221), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1221), - [anon_sym_BSLASH] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [aux_sym_trait_declaration_token1] = ACTIONS(1221), - [aux_sym_interface_declaration_token1] = ACTIONS(1221), - [aux_sym_class_declaration_token1] = ACTIONS(1221), - [aux_sym_class_modifier_token1] = ACTIONS(1221), - [aux_sym_class_modifier_token2] = ACTIONS(1221), - [aux_sym_visibility_modifier_token1] = ACTIONS(1221), - [aux_sym_visibility_modifier_token2] = ACTIONS(1221), - [aux_sym_visibility_modifier_token3] = ACTIONS(1221), - [aux_sym_arrow_function_token1] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_array] = ACTIONS(1221), - [anon_sym_unset] = ACTIONS(1221), - [aux_sym_echo_statement_token1] = ACTIONS(1221), - [anon_sym_declare] = ACTIONS(1221), - [aux_sym_declare_statement_token1] = ACTIONS(1221), - [sym_float] = ACTIONS(1221), - [aux_sym_try_statement_token1] = ACTIONS(1221), - [aux_sym_goto_statement_token1] = ACTIONS(1221), - [aux_sym_continue_statement_token1] = ACTIONS(1221), - [aux_sym_break_statement_token1] = ACTIONS(1221), - [sym_integer] = ACTIONS(1221), - [aux_sym_return_statement_token1] = ACTIONS(1221), - [aux_sym_throw_expression_token1] = ACTIONS(1221), - [aux_sym_while_statement_token1] = ACTIONS(1221), - [aux_sym_while_statement_token2] = ACTIONS(1221), - [aux_sym_do_statement_token1] = ACTIONS(1221), - [aux_sym_for_statement_token1] = ACTIONS(1221), - [aux_sym_for_statement_token2] = ACTIONS(1221), - [aux_sym_foreach_statement_token1] = ACTIONS(1221), - [aux_sym_foreach_statement_token2] = ACTIONS(1221), - [aux_sym_if_statement_token1] = ACTIONS(1221), - [aux_sym_if_statement_token2] = ACTIONS(1221), - [aux_sym_else_if_clause_token1] = ACTIONS(1221), - [aux_sym_else_clause_token1] = ACTIONS(1221), - [aux_sym_match_expression_token1] = ACTIONS(1221), - [aux_sym_match_default_expression_token1] = ACTIONS(1221), - [aux_sym_switch_statement_token1] = ACTIONS(1221), - [aux_sym_switch_block_token1] = ACTIONS(1221), - [aux_sym_case_statement_token1] = ACTIONS(1221), - [anon_sym_AT] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_clone] = ACTIONS(1221), - [anon_sym_print] = ACTIONS(1221), - [anon_sym_new] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [sym_shell_command_expression] = ACTIONS(1219), - [anon_sym_list] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_self] = ACTIONS(1221), - [anon_sym_parent] = ACTIONS(1221), - [anon_sym_POUND_LBRACK] = ACTIONS(1219), - [sym_string] = ACTIONS(1219), - [sym_boolean] = ACTIONS(1221), - [sym_null] = ACTIONS(1221), - [anon_sym_DOLLAR] = ACTIONS(1219), - [anon_sym_yield] = ACTIONS(1221), - [aux_sym_include_expression_token1] = ACTIONS(1221), - [aux_sym_include_once_expression_token1] = ACTIONS(1221), - [aux_sym_require_expression_token1] = ACTIONS(1221), - [aux_sym_require_once_expression_token1] = ACTIONS(1221), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_name] = ACTIONS(1226), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1224), + [aux_sym_function_static_declaration_token1] = ACTIONS(1226), + [aux_sym_global_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_definition_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1226), + [anon_sym_BSLASH] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [aux_sym_trait_declaration_token1] = ACTIONS(1226), + [aux_sym_interface_declaration_token1] = ACTIONS(1226), + [aux_sym_class_declaration_token1] = ACTIONS(1226), + [aux_sym_final_modifier_token1] = ACTIONS(1226), + [aux_sym_abstract_modifier_token1] = ACTIONS(1226), + [aux_sym_visibility_modifier_token1] = ACTIONS(1226), + [aux_sym_visibility_modifier_token2] = ACTIONS(1226), + [aux_sym_visibility_modifier_token3] = ACTIONS(1226), + [aux_sym_arrow_function_token1] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_array] = ACTIONS(1226), + [anon_sym_unset] = ACTIONS(1226), + [aux_sym_echo_statement_token1] = ACTIONS(1226), + [anon_sym_declare] = ACTIONS(1226), + [aux_sym_declare_statement_token1] = ACTIONS(1226), + [sym_float] = ACTIONS(1226), + [aux_sym_try_statement_token1] = ACTIONS(1226), + [aux_sym_goto_statement_token1] = ACTIONS(1226), + [aux_sym_continue_statement_token1] = ACTIONS(1226), + [aux_sym_break_statement_token1] = ACTIONS(1226), + [sym_integer] = ACTIONS(1226), + [aux_sym_return_statement_token1] = ACTIONS(1226), + [aux_sym_throw_expression_token1] = ACTIONS(1226), + [aux_sym_while_statement_token1] = ACTIONS(1226), + [aux_sym_while_statement_token2] = ACTIONS(1226), + [aux_sym_do_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token2] = ACTIONS(1226), + [aux_sym_foreach_statement_token1] = ACTIONS(1226), + [aux_sym_foreach_statement_token2] = ACTIONS(1226), + [aux_sym_if_statement_token1] = ACTIONS(1226), + [aux_sym_if_statement_token2] = ACTIONS(1226), + [aux_sym_else_if_clause_token1] = ACTIONS(1226), + [aux_sym_else_clause_token1] = ACTIONS(1226), + [aux_sym_match_expression_token1] = ACTIONS(1226), + [aux_sym_match_default_expression_token1] = ACTIONS(1226), + [aux_sym_switch_statement_token1] = ACTIONS(1226), + [aux_sym_switch_block_token1] = ACTIONS(1226), + [aux_sym_case_statement_token1] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_clone] = ACTIONS(1226), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_new] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [sym_shell_command_expression] = ACTIONS(1224), + [anon_sym_list] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_self] = ACTIONS(1226), + [anon_sym_parent] = ACTIONS(1226), + [anon_sym_POUND_LBRACK] = ACTIONS(1224), + [sym_string] = ACTIONS(1224), + [sym_boolean] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_DOLLAR] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [aux_sym_include_expression_token1] = ACTIONS(1226), + [aux_sym_include_once_expression_token1] = ACTIONS(1226), + [aux_sym_require_expression_token1] = ACTIONS(1226), + [aux_sym_require_once_expression_token1] = ACTIONS(1226), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1219), + [sym_heredoc] = ACTIONS(1224), }, [494] = { [sym_text_interpolation] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1223), - [sym_name] = ACTIONS(1225), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1223), - [aux_sym_function_static_declaration_token1] = ACTIONS(1225), - [aux_sym_global_declaration_token1] = ACTIONS(1225), - [aux_sym_namespace_definition_token1] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1225), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1225), - [anon_sym_BSLASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1223), - [aux_sym_trait_declaration_token1] = ACTIONS(1225), - [aux_sym_interface_declaration_token1] = ACTIONS(1225), - [aux_sym_class_declaration_token1] = ACTIONS(1225), - [aux_sym_class_modifier_token1] = ACTIONS(1225), - [aux_sym_class_modifier_token2] = ACTIONS(1225), - [aux_sym_visibility_modifier_token1] = ACTIONS(1225), - [aux_sym_visibility_modifier_token2] = ACTIONS(1225), - [aux_sym_visibility_modifier_token3] = ACTIONS(1225), - [aux_sym_arrow_function_token1] = ACTIONS(1225), - [anon_sym_LPAREN] = ACTIONS(1223), - [anon_sym_array] = ACTIONS(1225), - [anon_sym_unset] = ACTIONS(1225), - [aux_sym_echo_statement_token1] = ACTIONS(1225), - [anon_sym_declare] = ACTIONS(1225), - [aux_sym_declare_statement_token1] = ACTIONS(1225), - [sym_float] = ACTIONS(1225), - [aux_sym_try_statement_token1] = ACTIONS(1225), - [aux_sym_goto_statement_token1] = ACTIONS(1225), - [aux_sym_continue_statement_token1] = ACTIONS(1225), - [aux_sym_break_statement_token1] = ACTIONS(1225), - [sym_integer] = ACTIONS(1225), - [aux_sym_return_statement_token1] = ACTIONS(1225), - [aux_sym_throw_expression_token1] = ACTIONS(1225), - [aux_sym_while_statement_token1] = ACTIONS(1225), - [aux_sym_while_statement_token2] = ACTIONS(1225), - [aux_sym_do_statement_token1] = ACTIONS(1225), - [aux_sym_for_statement_token1] = ACTIONS(1225), - [aux_sym_for_statement_token2] = ACTIONS(1225), - [aux_sym_foreach_statement_token1] = ACTIONS(1225), - [aux_sym_foreach_statement_token2] = ACTIONS(1225), - [aux_sym_if_statement_token1] = ACTIONS(1225), - [aux_sym_if_statement_token2] = ACTIONS(1225), - [aux_sym_else_if_clause_token1] = ACTIONS(1225), - [aux_sym_else_clause_token1] = ACTIONS(1225), - [aux_sym_match_expression_token1] = ACTIONS(1225), - [aux_sym_match_default_expression_token1] = ACTIONS(1225), - [aux_sym_switch_statement_token1] = ACTIONS(1225), - [aux_sym_switch_block_token1] = ACTIONS(1225), - [aux_sym_case_statement_token1] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_clone] = ACTIONS(1225), - [anon_sym_print] = ACTIONS(1225), - [anon_sym_new] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [sym_shell_command_expression] = ACTIONS(1223), - [anon_sym_list] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1223), - [anon_sym_self] = ACTIONS(1225), - [anon_sym_parent] = ACTIONS(1225), - [anon_sym_POUND_LBRACK] = ACTIONS(1223), - [sym_string] = ACTIONS(1223), - [sym_boolean] = ACTIONS(1225), - [sym_null] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1223), - [anon_sym_yield] = ACTIONS(1225), - [aux_sym_include_expression_token1] = ACTIONS(1225), - [aux_sym_include_once_expression_token1] = ACTIONS(1225), - [aux_sym_require_expression_token1] = ACTIONS(1225), - [aux_sym_require_once_expression_token1] = ACTIONS(1225), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_name] = ACTIONS(1230), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1228), + [aux_sym_function_static_declaration_token1] = ACTIONS(1230), + [aux_sym_global_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_definition_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1230), + [anon_sym_BSLASH] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [aux_sym_trait_declaration_token1] = ACTIONS(1230), + [aux_sym_interface_declaration_token1] = ACTIONS(1230), + [aux_sym_class_declaration_token1] = ACTIONS(1230), + [aux_sym_final_modifier_token1] = ACTIONS(1230), + [aux_sym_abstract_modifier_token1] = ACTIONS(1230), + [aux_sym_visibility_modifier_token1] = ACTIONS(1230), + [aux_sym_visibility_modifier_token2] = ACTIONS(1230), + [aux_sym_visibility_modifier_token3] = ACTIONS(1230), + [aux_sym_arrow_function_token1] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_array] = ACTIONS(1230), + [anon_sym_unset] = ACTIONS(1230), + [aux_sym_echo_statement_token1] = ACTIONS(1230), + [anon_sym_declare] = ACTIONS(1230), + [aux_sym_declare_statement_token1] = ACTIONS(1230), + [sym_float] = ACTIONS(1230), + [aux_sym_try_statement_token1] = ACTIONS(1230), + [aux_sym_goto_statement_token1] = ACTIONS(1230), + [aux_sym_continue_statement_token1] = ACTIONS(1230), + [aux_sym_break_statement_token1] = ACTIONS(1230), + [sym_integer] = ACTIONS(1230), + [aux_sym_return_statement_token1] = ACTIONS(1230), + [aux_sym_throw_expression_token1] = ACTIONS(1230), + [aux_sym_while_statement_token1] = ACTIONS(1230), + [aux_sym_while_statement_token2] = ACTIONS(1230), + [aux_sym_do_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token2] = ACTIONS(1230), + [aux_sym_foreach_statement_token1] = ACTIONS(1230), + [aux_sym_foreach_statement_token2] = ACTIONS(1230), + [aux_sym_if_statement_token1] = ACTIONS(1230), + [aux_sym_if_statement_token2] = ACTIONS(1230), + [aux_sym_else_if_clause_token1] = ACTIONS(1230), + [aux_sym_else_clause_token1] = ACTIONS(1230), + [aux_sym_match_expression_token1] = ACTIONS(1230), + [aux_sym_match_default_expression_token1] = ACTIONS(1230), + [aux_sym_switch_statement_token1] = ACTIONS(1230), + [aux_sym_switch_block_token1] = ACTIONS(1230), + [aux_sym_case_statement_token1] = ACTIONS(1230), + [anon_sym_AT] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_clone] = ACTIONS(1230), + [anon_sym_print] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [sym_shell_command_expression] = ACTIONS(1228), + [anon_sym_list] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_self] = ACTIONS(1230), + [anon_sym_parent] = ACTIONS(1230), + [anon_sym_POUND_LBRACK] = ACTIONS(1228), + [sym_string] = ACTIONS(1228), + [sym_boolean] = ACTIONS(1230), + [sym_null] = ACTIONS(1230), + [anon_sym_DOLLAR] = ACTIONS(1228), + [anon_sym_yield] = ACTIONS(1230), + [aux_sym_include_expression_token1] = ACTIONS(1230), + [aux_sym_include_once_expression_token1] = ACTIONS(1230), + [aux_sym_require_expression_token1] = ACTIONS(1230), + [aux_sym_require_once_expression_token1] = ACTIONS(1230), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1223), + [sym_heredoc] = ACTIONS(1228), }, [495] = { [sym_text_interpolation] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_name] = ACTIONS(1229), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1227), - [aux_sym_function_static_declaration_token1] = ACTIONS(1229), - [aux_sym_global_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_definition_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1229), - [anon_sym_BSLASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [aux_sym_trait_declaration_token1] = ACTIONS(1229), - [aux_sym_interface_declaration_token1] = ACTIONS(1229), - [aux_sym_class_declaration_token1] = ACTIONS(1229), - [aux_sym_class_modifier_token1] = ACTIONS(1229), - [aux_sym_class_modifier_token2] = ACTIONS(1229), - [aux_sym_visibility_modifier_token1] = ACTIONS(1229), - [aux_sym_visibility_modifier_token2] = ACTIONS(1229), - [aux_sym_visibility_modifier_token3] = ACTIONS(1229), - [aux_sym_arrow_function_token1] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_array] = ACTIONS(1229), - [anon_sym_unset] = ACTIONS(1229), - [aux_sym_echo_statement_token1] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [aux_sym_declare_statement_token1] = ACTIONS(1229), - [sym_float] = ACTIONS(1229), - [aux_sym_try_statement_token1] = ACTIONS(1229), - [aux_sym_goto_statement_token1] = ACTIONS(1229), - [aux_sym_continue_statement_token1] = ACTIONS(1229), - [aux_sym_break_statement_token1] = ACTIONS(1229), - [sym_integer] = ACTIONS(1229), - [aux_sym_return_statement_token1] = ACTIONS(1229), - [aux_sym_throw_expression_token1] = ACTIONS(1229), - [aux_sym_while_statement_token1] = ACTIONS(1229), - [aux_sym_while_statement_token2] = ACTIONS(1229), - [aux_sym_do_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token2] = ACTIONS(1229), - [aux_sym_foreach_statement_token1] = ACTIONS(1229), - [aux_sym_foreach_statement_token2] = ACTIONS(1229), - [aux_sym_if_statement_token1] = ACTIONS(1229), - [aux_sym_if_statement_token2] = ACTIONS(1229), - [aux_sym_else_if_clause_token1] = ACTIONS(1229), - [aux_sym_else_clause_token1] = ACTIONS(1229), - [aux_sym_match_expression_token1] = ACTIONS(1229), - [aux_sym_match_default_expression_token1] = ACTIONS(1229), - [aux_sym_switch_statement_token1] = ACTIONS(1229), - [aux_sym_switch_block_token1] = ACTIONS(1229), - [aux_sym_case_statement_token1] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_clone] = ACTIONS(1229), - [anon_sym_print] = ACTIONS(1229), - [anon_sym_new] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [sym_shell_command_expression] = ACTIONS(1227), - [anon_sym_list] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_self] = ACTIONS(1229), - [anon_sym_parent] = ACTIONS(1229), - [anon_sym_POUND_LBRACK] = ACTIONS(1227), - [sym_string] = ACTIONS(1227), - [sym_boolean] = ACTIONS(1229), - [sym_null] = ACTIONS(1229), - [anon_sym_DOLLAR] = ACTIONS(1227), - [anon_sym_yield] = ACTIONS(1229), - [aux_sym_include_expression_token1] = ACTIONS(1229), - [aux_sym_include_once_expression_token1] = ACTIONS(1229), - [aux_sym_require_expression_token1] = ACTIONS(1229), - [aux_sym_require_once_expression_token1] = ACTIONS(1229), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_name] = ACTIONS(1234), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1232), + [aux_sym_function_static_declaration_token1] = ACTIONS(1234), + [aux_sym_global_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_definition_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1234), + [anon_sym_BSLASH] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [aux_sym_trait_declaration_token1] = ACTIONS(1234), + [aux_sym_interface_declaration_token1] = ACTIONS(1234), + [aux_sym_class_declaration_token1] = ACTIONS(1234), + [aux_sym_final_modifier_token1] = ACTIONS(1234), + [aux_sym_abstract_modifier_token1] = ACTIONS(1234), + [aux_sym_visibility_modifier_token1] = ACTIONS(1234), + [aux_sym_visibility_modifier_token2] = ACTIONS(1234), + [aux_sym_visibility_modifier_token3] = ACTIONS(1234), + [aux_sym_arrow_function_token1] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_array] = ACTIONS(1234), + [anon_sym_unset] = ACTIONS(1234), + [aux_sym_echo_statement_token1] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [aux_sym_declare_statement_token1] = ACTIONS(1234), + [sym_float] = ACTIONS(1234), + [aux_sym_try_statement_token1] = ACTIONS(1234), + [aux_sym_goto_statement_token1] = ACTIONS(1234), + [aux_sym_continue_statement_token1] = ACTIONS(1234), + [aux_sym_break_statement_token1] = ACTIONS(1234), + [sym_integer] = ACTIONS(1234), + [aux_sym_return_statement_token1] = ACTIONS(1234), + [aux_sym_throw_expression_token1] = ACTIONS(1234), + [aux_sym_while_statement_token1] = ACTIONS(1234), + [aux_sym_while_statement_token2] = ACTIONS(1234), + [aux_sym_do_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token2] = ACTIONS(1234), + [aux_sym_foreach_statement_token1] = ACTIONS(1234), + [aux_sym_foreach_statement_token2] = ACTIONS(1234), + [aux_sym_if_statement_token1] = ACTIONS(1234), + [aux_sym_if_statement_token2] = ACTIONS(1234), + [aux_sym_else_if_clause_token1] = ACTIONS(1234), + [aux_sym_else_clause_token1] = ACTIONS(1234), + [aux_sym_match_expression_token1] = ACTIONS(1234), + [aux_sym_match_default_expression_token1] = ACTIONS(1234), + [aux_sym_switch_statement_token1] = ACTIONS(1234), + [aux_sym_switch_block_token1] = ACTIONS(1234), + [aux_sym_case_statement_token1] = ACTIONS(1234), + [anon_sym_AT] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_clone] = ACTIONS(1234), + [anon_sym_print] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [sym_shell_command_expression] = ACTIONS(1232), + [anon_sym_list] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_self] = ACTIONS(1234), + [anon_sym_parent] = ACTIONS(1234), + [anon_sym_POUND_LBRACK] = ACTIONS(1232), + [sym_string] = ACTIONS(1232), + [sym_boolean] = ACTIONS(1234), + [sym_null] = ACTIONS(1234), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_yield] = ACTIONS(1234), + [aux_sym_include_expression_token1] = ACTIONS(1234), + [aux_sym_include_once_expression_token1] = ACTIONS(1234), + [aux_sym_require_expression_token1] = ACTIONS(1234), + [aux_sym_require_once_expression_token1] = ACTIONS(1234), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1227), + [sym_heredoc] = ACTIONS(1232), }, [496] = { [sym_text_interpolation] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_name] = ACTIONS(1229), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1227), - [aux_sym_function_static_declaration_token1] = ACTIONS(1229), - [aux_sym_global_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_definition_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1229), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1229), - [anon_sym_BSLASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [aux_sym_trait_declaration_token1] = ACTIONS(1229), - [aux_sym_interface_declaration_token1] = ACTIONS(1229), - [aux_sym_class_declaration_token1] = ACTIONS(1229), - [aux_sym_class_modifier_token1] = ACTIONS(1229), - [aux_sym_class_modifier_token2] = ACTIONS(1229), - [aux_sym_visibility_modifier_token1] = ACTIONS(1229), - [aux_sym_visibility_modifier_token2] = ACTIONS(1229), - [aux_sym_visibility_modifier_token3] = ACTIONS(1229), - [aux_sym_arrow_function_token1] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_array] = ACTIONS(1229), - [anon_sym_unset] = ACTIONS(1229), - [aux_sym_echo_statement_token1] = ACTIONS(1229), - [anon_sym_declare] = ACTIONS(1229), - [aux_sym_declare_statement_token1] = ACTIONS(1229), - [sym_float] = ACTIONS(1229), - [aux_sym_try_statement_token1] = ACTIONS(1229), - [aux_sym_goto_statement_token1] = ACTIONS(1229), - [aux_sym_continue_statement_token1] = ACTIONS(1229), - [aux_sym_break_statement_token1] = ACTIONS(1229), - [sym_integer] = ACTIONS(1229), - [aux_sym_return_statement_token1] = ACTIONS(1229), - [aux_sym_throw_expression_token1] = ACTIONS(1229), - [aux_sym_while_statement_token1] = ACTIONS(1229), - [aux_sym_while_statement_token2] = ACTIONS(1229), - [aux_sym_do_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token1] = ACTIONS(1229), - [aux_sym_for_statement_token2] = ACTIONS(1229), - [aux_sym_foreach_statement_token1] = ACTIONS(1229), - [aux_sym_foreach_statement_token2] = ACTIONS(1229), - [aux_sym_if_statement_token1] = ACTIONS(1229), - [aux_sym_if_statement_token2] = ACTIONS(1229), - [aux_sym_else_if_clause_token1] = ACTIONS(1229), - [aux_sym_else_clause_token1] = ACTIONS(1229), - [aux_sym_match_expression_token1] = ACTIONS(1229), - [aux_sym_match_default_expression_token1] = ACTIONS(1229), - [aux_sym_switch_statement_token1] = ACTIONS(1229), - [aux_sym_switch_block_token1] = ACTIONS(1229), - [aux_sym_case_statement_token1] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_clone] = ACTIONS(1229), - [anon_sym_print] = ACTIONS(1229), - [anon_sym_new] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [sym_shell_command_expression] = ACTIONS(1227), - [anon_sym_list] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_self] = ACTIONS(1229), - [anon_sym_parent] = ACTIONS(1229), - [anon_sym_POUND_LBRACK] = ACTIONS(1227), - [sym_string] = ACTIONS(1227), - [sym_boolean] = ACTIONS(1229), - [sym_null] = ACTIONS(1229), - [anon_sym_DOLLAR] = ACTIONS(1227), - [anon_sym_yield] = ACTIONS(1229), - [aux_sym_include_expression_token1] = ACTIONS(1229), - [aux_sym_include_once_expression_token1] = ACTIONS(1229), - [aux_sym_require_expression_token1] = ACTIONS(1229), - [aux_sym_require_once_expression_token1] = ACTIONS(1229), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_name] = ACTIONS(1238), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1236), + [aux_sym_function_static_declaration_token1] = ACTIONS(1238), + [aux_sym_global_declaration_token1] = ACTIONS(1238), + [aux_sym_namespace_definition_token1] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1238), + [anon_sym_BSLASH] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [aux_sym_trait_declaration_token1] = ACTIONS(1238), + [aux_sym_interface_declaration_token1] = ACTIONS(1238), + [aux_sym_class_declaration_token1] = ACTIONS(1238), + [aux_sym_final_modifier_token1] = ACTIONS(1238), + [aux_sym_abstract_modifier_token1] = ACTIONS(1238), + [aux_sym_visibility_modifier_token1] = ACTIONS(1238), + [aux_sym_visibility_modifier_token2] = ACTIONS(1238), + [aux_sym_visibility_modifier_token3] = ACTIONS(1238), + [aux_sym_arrow_function_token1] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_array] = ACTIONS(1238), + [anon_sym_unset] = ACTIONS(1238), + [aux_sym_echo_statement_token1] = ACTIONS(1238), + [anon_sym_declare] = ACTIONS(1238), + [aux_sym_declare_statement_token1] = ACTIONS(1238), + [sym_float] = ACTIONS(1238), + [aux_sym_try_statement_token1] = ACTIONS(1238), + [aux_sym_goto_statement_token1] = ACTIONS(1238), + [aux_sym_continue_statement_token1] = ACTIONS(1238), + [aux_sym_break_statement_token1] = ACTIONS(1238), + [sym_integer] = ACTIONS(1238), + [aux_sym_return_statement_token1] = ACTIONS(1238), + [aux_sym_throw_expression_token1] = ACTIONS(1238), + [aux_sym_while_statement_token1] = ACTIONS(1238), + [aux_sym_while_statement_token2] = ACTIONS(1238), + [aux_sym_do_statement_token1] = ACTIONS(1238), + [aux_sym_for_statement_token1] = ACTIONS(1238), + [aux_sym_for_statement_token2] = ACTIONS(1238), + [aux_sym_foreach_statement_token1] = ACTIONS(1238), + [aux_sym_foreach_statement_token2] = ACTIONS(1238), + [aux_sym_if_statement_token1] = ACTIONS(1238), + [aux_sym_if_statement_token2] = ACTIONS(1238), + [aux_sym_else_if_clause_token1] = ACTIONS(1238), + [aux_sym_else_clause_token1] = ACTIONS(1238), + [aux_sym_match_expression_token1] = ACTIONS(1238), + [aux_sym_match_default_expression_token1] = ACTIONS(1238), + [aux_sym_switch_statement_token1] = ACTIONS(1238), + [aux_sym_switch_block_token1] = ACTIONS(1238), + [aux_sym_case_statement_token1] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_clone] = ACTIONS(1238), + [anon_sym_print] = ACTIONS(1238), + [anon_sym_new] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [sym_shell_command_expression] = ACTIONS(1236), + [anon_sym_list] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_self] = ACTIONS(1238), + [anon_sym_parent] = ACTIONS(1238), + [anon_sym_POUND_LBRACK] = ACTIONS(1236), + [sym_string] = ACTIONS(1236), + [sym_boolean] = ACTIONS(1238), + [sym_null] = ACTIONS(1238), + [anon_sym_DOLLAR] = ACTIONS(1236), + [anon_sym_yield] = ACTIONS(1238), + [aux_sym_include_expression_token1] = ACTIONS(1238), + [aux_sym_include_once_expression_token1] = ACTIONS(1238), + [aux_sym_require_expression_token1] = ACTIONS(1238), + [aux_sym_require_once_expression_token1] = ACTIONS(1238), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1227), + [sym_heredoc] = ACTIONS(1236), }, [497] = { [sym_text_interpolation] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1231), - [sym_name] = ACTIONS(1233), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1231), - [aux_sym_function_static_declaration_token1] = ACTIONS(1233), - [aux_sym_global_declaration_token1] = ACTIONS(1233), - [aux_sym_namespace_definition_token1] = ACTIONS(1233), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1233), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1233), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1233), - [anon_sym_BSLASH] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1231), - [aux_sym_trait_declaration_token1] = ACTIONS(1233), - [aux_sym_interface_declaration_token1] = ACTIONS(1233), - [aux_sym_class_declaration_token1] = ACTIONS(1233), - [aux_sym_class_modifier_token1] = ACTIONS(1233), - [aux_sym_class_modifier_token2] = ACTIONS(1233), - [aux_sym_visibility_modifier_token1] = ACTIONS(1233), - [aux_sym_visibility_modifier_token2] = ACTIONS(1233), - [aux_sym_visibility_modifier_token3] = ACTIONS(1233), - [aux_sym_arrow_function_token1] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_array] = ACTIONS(1233), - [anon_sym_unset] = ACTIONS(1233), - [aux_sym_echo_statement_token1] = ACTIONS(1233), - [anon_sym_declare] = ACTIONS(1233), - [aux_sym_declare_statement_token1] = ACTIONS(1233), - [sym_float] = ACTIONS(1233), - [aux_sym_try_statement_token1] = ACTIONS(1233), - [aux_sym_goto_statement_token1] = ACTIONS(1233), - [aux_sym_continue_statement_token1] = ACTIONS(1233), - [aux_sym_break_statement_token1] = ACTIONS(1233), - [sym_integer] = ACTIONS(1233), - [aux_sym_return_statement_token1] = ACTIONS(1233), - [aux_sym_throw_expression_token1] = ACTIONS(1233), - [aux_sym_while_statement_token1] = ACTIONS(1233), - [aux_sym_while_statement_token2] = ACTIONS(1233), - [aux_sym_do_statement_token1] = ACTIONS(1233), - [aux_sym_for_statement_token1] = ACTIONS(1233), - [aux_sym_for_statement_token2] = ACTIONS(1233), - [aux_sym_foreach_statement_token1] = ACTIONS(1233), - [aux_sym_foreach_statement_token2] = ACTIONS(1233), - [aux_sym_if_statement_token1] = ACTIONS(1233), - [aux_sym_if_statement_token2] = ACTIONS(1233), - [aux_sym_else_if_clause_token1] = ACTIONS(1233), - [aux_sym_else_clause_token1] = ACTIONS(1233), - [aux_sym_match_expression_token1] = ACTIONS(1233), - [aux_sym_match_default_expression_token1] = ACTIONS(1233), - [aux_sym_switch_statement_token1] = ACTIONS(1233), - [aux_sym_switch_block_token1] = ACTIONS(1233), - [aux_sym_case_statement_token1] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_clone] = ACTIONS(1233), - [anon_sym_print] = ACTIONS(1233), - [anon_sym_new] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [sym_shell_command_expression] = ACTIONS(1231), - [anon_sym_list] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_self] = ACTIONS(1233), - [anon_sym_parent] = ACTIONS(1233), - [anon_sym_POUND_LBRACK] = ACTIONS(1231), - [sym_string] = ACTIONS(1231), - [sym_boolean] = ACTIONS(1233), - [sym_null] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [aux_sym_include_expression_token1] = ACTIONS(1233), - [aux_sym_include_once_expression_token1] = ACTIONS(1233), - [aux_sym_require_expression_token1] = ACTIONS(1233), - [aux_sym_require_once_expression_token1] = ACTIONS(1233), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_name] = ACTIONS(1234), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1232), + [aux_sym_function_static_declaration_token1] = ACTIONS(1234), + [aux_sym_global_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_definition_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1234), + [anon_sym_BSLASH] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [aux_sym_trait_declaration_token1] = ACTIONS(1234), + [aux_sym_interface_declaration_token1] = ACTIONS(1234), + [aux_sym_class_declaration_token1] = ACTIONS(1234), + [aux_sym_final_modifier_token1] = ACTIONS(1234), + [aux_sym_abstract_modifier_token1] = ACTIONS(1234), + [aux_sym_visibility_modifier_token1] = ACTIONS(1234), + [aux_sym_visibility_modifier_token2] = ACTIONS(1234), + [aux_sym_visibility_modifier_token3] = ACTIONS(1234), + [aux_sym_arrow_function_token1] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_array] = ACTIONS(1234), + [anon_sym_unset] = ACTIONS(1234), + [aux_sym_echo_statement_token1] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [aux_sym_declare_statement_token1] = ACTIONS(1234), + [sym_float] = ACTIONS(1234), + [aux_sym_try_statement_token1] = ACTIONS(1234), + [aux_sym_goto_statement_token1] = ACTIONS(1234), + [aux_sym_continue_statement_token1] = ACTIONS(1234), + [aux_sym_break_statement_token1] = ACTIONS(1234), + [sym_integer] = ACTIONS(1234), + [aux_sym_return_statement_token1] = ACTIONS(1234), + [aux_sym_throw_expression_token1] = ACTIONS(1234), + [aux_sym_while_statement_token1] = ACTIONS(1234), + [aux_sym_while_statement_token2] = ACTIONS(1234), + [aux_sym_do_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token2] = ACTIONS(1234), + [aux_sym_foreach_statement_token1] = ACTIONS(1234), + [aux_sym_foreach_statement_token2] = ACTIONS(1234), + [aux_sym_if_statement_token1] = ACTIONS(1234), + [aux_sym_if_statement_token2] = ACTIONS(1234), + [aux_sym_else_if_clause_token1] = ACTIONS(1234), + [aux_sym_else_clause_token1] = ACTIONS(1234), + [aux_sym_match_expression_token1] = ACTIONS(1234), + [aux_sym_match_default_expression_token1] = ACTIONS(1234), + [aux_sym_switch_statement_token1] = ACTIONS(1234), + [aux_sym_switch_block_token1] = ACTIONS(1234), + [aux_sym_case_statement_token1] = ACTIONS(1234), + [anon_sym_AT] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_clone] = ACTIONS(1234), + [anon_sym_print] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [sym_shell_command_expression] = ACTIONS(1232), + [anon_sym_list] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_self] = ACTIONS(1234), + [anon_sym_parent] = ACTIONS(1234), + [anon_sym_POUND_LBRACK] = ACTIONS(1232), + [sym_string] = ACTIONS(1232), + [sym_boolean] = ACTIONS(1234), + [sym_null] = ACTIONS(1234), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_yield] = ACTIONS(1234), + [aux_sym_include_expression_token1] = ACTIONS(1234), + [aux_sym_include_once_expression_token1] = ACTIONS(1234), + [aux_sym_require_expression_token1] = ACTIONS(1234), + [aux_sym_require_once_expression_token1] = ACTIONS(1234), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1231), + [sym_heredoc] = ACTIONS(1232), }, [498] = { [sym_text_interpolation] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1235), - [sym_name] = ACTIONS(1237), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1235), - [aux_sym_function_static_declaration_token1] = ACTIONS(1237), - [aux_sym_global_declaration_token1] = ACTIONS(1237), - [aux_sym_namespace_definition_token1] = ACTIONS(1237), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1237), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1237), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1237), - [anon_sym_BSLASH] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_RBRACE] = ACTIONS(1235), - [aux_sym_trait_declaration_token1] = ACTIONS(1237), - [aux_sym_interface_declaration_token1] = ACTIONS(1237), - [aux_sym_class_declaration_token1] = ACTIONS(1237), - [aux_sym_class_modifier_token1] = ACTIONS(1237), - [aux_sym_class_modifier_token2] = ACTIONS(1237), - [aux_sym_visibility_modifier_token1] = ACTIONS(1237), - [aux_sym_visibility_modifier_token2] = ACTIONS(1237), - [aux_sym_visibility_modifier_token3] = ACTIONS(1237), - [aux_sym_arrow_function_token1] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1235), - [anon_sym_array] = ACTIONS(1237), - [anon_sym_unset] = ACTIONS(1237), - [aux_sym_echo_statement_token1] = ACTIONS(1237), - [anon_sym_declare] = ACTIONS(1237), - [aux_sym_declare_statement_token1] = ACTIONS(1237), - [sym_float] = ACTIONS(1237), - [aux_sym_try_statement_token1] = ACTIONS(1237), - [aux_sym_goto_statement_token1] = ACTIONS(1237), - [aux_sym_continue_statement_token1] = ACTIONS(1237), - [aux_sym_break_statement_token1] = ACTIONS(1237), - [sym_integer] = ACTIONS(1237), - [aux_sym_return_statement_token1] = ACTIONS(1237), - [aux_sym_throw_expression_token1] = ACTIONS(1237), - [aux_sym_while_statement_token1] = ACTIONS(1237), - [aux_sym_while_statement_token2] = ACTIONS(1237), - [aux_sym_do_statement_token1] = ACTIONS(1237), - [aux_sym_for_statement_token1] = ACTIONS(1237), - [aux_sym_for_statement_token2] = ACTIONS(1237), - [aux_sym_foreach_statement_token1] = ACTIONS(1237), - [aux_sym_foreach_statement_token2] = ACTIONS(1237), - [aux_sym_if_statement_token1] = ACTIONS(1237), - [aux_sym_if_statement_token2] = ACTIONS(1237), - [aux_sym_else_if_clause_token1] = ACTIONS(1237), - [aux_sym_else_clause_token1] = ACTIONS(1237), - [aux_sym_match_expression_token1] = ACTIONS(1237), - [aux_sym_match_default_expression_token1] = ACTIONS(1237), - [aux_sym_switch_statement_token1] = ACTIONS(1237), - [aux_sym_switch_block_token1] = ACTIONS(1237), - [aux_sym_case_statement_token1] = ACTIONS(1237), - [anon_sym_AT] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_clone] = ACTIONS(1237), - [anon_sym_print] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1237), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [sym_shell_command_expression] = ACTIONS(1235), - [anon_sym_list] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1235), - [anon_sym_self] = ACTIONS(1237), - [anon_sym_parent] = ACTIONS(1237), - [anon_sym_POUND_LBRACK] = ACTIONS(1235), - [sym_string] = ACTIONS(1235), - [sym_boolean] = ACTIONS(1237), - [sym_null] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1235), - [anon_sym_yield] = ACTIONS(1237), - [aux_sym_include_expression_token1] = ACTIONS(1237), - [aux_sym_include_once_expression_token1] = ACTIONS(1237), - [aux_sym_require_expression_token1] = ACTIONS(1237), - [aux_sym_require_once_expression_token1] = ACTIONS(1237), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_name] = ACTIONS(1242), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1240), + [aux_sym_function_static_declaration_token1] = ACTIONS(1242), + [aux_sym_global_declaration_token1] = ACTIONS(1242), + [aux_sym_namespace_definition_token1] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1242), + [anon_sym_BSLASH] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [aux_sym_trait_declaration_token1] = ACTIONS(1242), + [aux_sym_interface_declaration_token1] = ACTIONS(1242), + [aux_sym_class_declaration_token1] = ACTIONS(1242), + [aux_sym_final_modifier_token1] = ACTIONS(1242), + [aux_sym_abstract_modifier_token1] = ACTIONS(1242), + [aux_sym_visibility_modifier_token1] = ACTIONS(1242), + [aux_sym_visibility_modifier_token2] = ACTIONS(1242), + [aux_sym_visibility_modifier_token3] = ACTIONS(1242), + [aux_sym_arrow_function_token1] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_array] = ACTIONS(1242), + [anon_sym_unset] = ACTIONS(1242), + [aux_sym_echo_statement_token1] = ACTIONS(1242), + [anon_sym_declare] = ACTIONS(1242), + [aux_sym_declare_statement_token1] = ACTIONS(1242), + [sym_float] = ACTIONS(1242), + [aux_sym_try_statement_token1] = ACTIONS(1242), + [aux_sym_goto_statement_token1] = ACTIONS(1242), + [aux_sym_continue_statement_token1] = ACTIONS(1242), + [aux_sym_break_statement_token1] = ACTIONS(1242), + [sym_integer] = ACTIONS(1242), + [aux_sym_return_statement_token1] = ACTIONS(1242), + [aux_sym_throw_expression_token1] = ACTIONS(1242), + [aux_sym_while_statement_token1] = ACTIONS(1242), + [aux_sym_while_statement_token2] = ACTIONS(1242), + [aux_sym_do_statement_token1] = ACTIONS(1242), + [aux_sym_for_statement_token1] = ACTIONS(1242), + [aux_sym_for_statement_token2] = ACTIONS(1242), + [aux_sym_foreach_statement_token1] = ACTIONS(1242), + [aux_sym_foreach_statement_token2] = ACTIONS(1242), + [aux_sym_if_statement_token1] = ACTIONS(1242), + [aux_sym_if_statement_token2] = ACTIONS(1242), + [aux_sym_else_if_clause_token1] = ACTIONS(1242), + [aux_sym_else_clause_token1] = ACTIONS(1242), + [aux_sym_match_expression_token1] = ACTIONS(1242), + [aux_sym_match_default_expression_token1] = ACTIONS(1242), + [aux_sym_switch_statement_token1] = ACTIONS(1242), + [aux_sym_switch_block_token1] = ACTIONS(1242), + [aux_sym_case_statement_token1] = ACTIONS(1242), + [anon_sym_AT] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_clone] = ACTIONS(1242), + [anon_sym_print] = ACTIONS(1242), + [anon_sym_new] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [sym_shell_command_expression] = ACTIONS(1240), + [anon_sym_list] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_self] = ACTIONS(1242), + [anon_sym_parent] = ACTIONS(1242), + [anon_sym_POUND_LBRACK] = ACTIONS(1240), + [sym_string] = ACTIONS(1240), + [sym_boolean] = ACTIONS(1242), + [sym_null] = ACTIONS(1242), + [anon_sym_DOLLAR] = ACTIONS(1240), + [anon_sym_yield] = ACTIONS(1242), + [aux_sym_include_expression_token1] = ACTIONS(1242), + [aux_sym_include_once_expression_token1] = ACTIONS(1242), + [aux_sym_require_expression_token1] = ACTIONS(1242), + [aux_sym_require_once_expression_token1] = ACTIONS(1242), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1235), + [sym_heredoc] = ACTIONS(1240), }, [499] = { [sym_text_interpolation] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_name] = ACTIONS(1241), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1239), - [aux_sym_function_static_declaration_token1] = ACTIONS(1241), - [aux_sym_global_declaration_token1] = ACTIONS(1241), - [aux_sym_namespace_definition_token1] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1241), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1241), - [anon_sym_BSLASH] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [aux_sym_trait_declaration_token1] = ACTIONS(1241), - [aux_sym_interface_declaration_token1] = ACTIONS(1241), - [aux_sym_class_declaration_token1] = ACTIONS(1241), - [aux_sym_class_modifier_token1] = ACTIONS(1241), - [aux_sym_class_modifier_token2] = ACTIONS(1241), - [aux_sym_visibility_modifier_token1] = ACTIONS(1241), - [aux_sym_visibility_modifier_token2] = ACTIONS(1241), - [aux_sym_visibility_modifier_token3] = ACTIONS(1241), - [aux_sym_arrow_function_token1] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_array] = ACTIONS(1241), - [anon_sym_unset] = ACTIONS(1241), - [aux_sym_echo_statement_token1] = ACTIONS(1241), - [anon_sym_declare] = ACTIONS(1241), - [aux_sym_declare_statement_token1] = ACTIONS(1241), - [sym_float] = ACTIONS(1241), - [aux_sym_try_statement_token1] = ACTIONS(1241), - [aux_sym_goto_statement_token1] = ACTIONS(1241), - [aux_sym_continue_statement_token1] = ACTIONS(1241), - [aux_sym_break_statement_token1] = ACTIONS(1241), - [sym_integer] = ACTIONS(1241), - [aux_sym_return_statement_token1] = ACTIONS(1241), - [aux_sym_throw_expression_token1] = ACTIONS(1241), - [aux_sym_while_statement_token1] = ACTIONS(1241), - [aux_sym_while_statement_token2] = ACTIONS(1241), - [aux_sym_do_statement_token1] = ACTIONS(1241), - [aux_sym_for_statement_token1] = ACTIONS(1241), - [aux_sym_for_statement_token2] = ACTIONS(1241), - [aux_sym_foreach_statement_token1] = ACTIONS(1241), - [aux_sym_foreach_statement_token2] = ACTIONS(1241), - [aux_sym_if_statement_token1] = ACTIONS(1241), - [aux_sym_if_statement_token2] = ACTIONS(1241), - [aux_sym_else_if_clause_token1] = ACTIONS(1241), - [aux_sym_else_clause_token1] = ACTIONS(1241), - [aux_sym_match_expression_token1] = ACTIONS(1241), - [aux_sym_match_default_expression_token1] = ACTIONS(1241), - [aux_sym_switch_statement_token1] = ACTIONS(1241), - [aux_sym_switch_block_token1] = ACTIONS(1241), - [aux_sym_case_statement_token1] = ACTIONS(1241), - [anon_sym_AT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_clone] = ACTIONS(1241), - [anon_sym_print] = ACTIONS(1241), - [anon_sym_new] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [sym_shell_command_expression] = ACTIONS(1239), - [anon_sym_list] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_self] = ACTIONS(1241), - [anon_sym_parent] = ACTIONS(1241), - [anon_sym_POUND_LBRACK] = ACTIONS(1239), - [sym_string] = ACTIONS(1239), - [sym_boolean] = ACTIONS(1241), - [sym_null] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1239), - [anon_sym_yield] = ACTIONS(1241), - [aux_sym_include_expression_token1] = ACTIONS(1241), - [aux_sym_include_once_expression_token1] = ACTIONS(1241), - [aux_sym_require_expression_token1] = ACTIONS(1241), - [aux_sym_require_once_expression_token1] = ACTIONS(1241), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_name] = ACTIONS(1246), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1244), + [aux_sym_function_static_declaration_token1] = ACTIONS(1246), + [aux_sym_global_declaration_token1] = ACTIONS(1246), + [aux_sym_namespace_definition_token1] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1246), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [aux_sym_trait_declaration_token1] = ACTIONS(1246), + [aux_sym_interface_declaration_token1] = ACTIONS(1246), + [aux_sym_class_declaration_token1] = ACTIONS(1246), + [aux_sym_final_modifier_token1] = ACTIONS(1246), + [aux_sym_abstract_modifier_token1] = ACTIONS(1246), + [aux_sym_visibility_modifier_token1] = ACTIONS(1246), + [aux_sym_visibility_modifier_token2] = ACTIONS(1246), + [aux_sym_visibility_modifier_token3] = ACTIONS(1246), + [aux_sym_arrow_function_token1] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_array] = ACTIONS(1246), + [anon_sym_unset] = ACTIONS(1246), + [aux_sym_echo_statement_token1] = ACTIONS(1246), + [anon_sym_declare] = ACTIONS(1246), + [aux_sym_declare_statement_token1] = ACTIONS(1246), + [sym_float] = ACTIONS(1246), + [aux_sym_try_statement_token1] = ACTIONS(1246), + [aux_sym_goto_statement_token1] = ACTIONS(1246), + [aux_sym_continue_statement_token1] = ACTIONS(1246), + [aux_sym_break_statement_token1] = ACTIONS(1246), + [sym_integer] = ACTIONS(1246), + [aux_sym_return_statement_token1] = ACTIONS(1246), + [aux_sym_throw_expression_token1] = ACTIONS(1246), + [aux_sym_while_statement_token1] = ACTIONS(1246), + [aux_sym_while_statement_token2] = ACTIONS(1246), + [aux_sym_do_statement_token1] = ACTIONS(1246), + [aux_sym_for_statement_token1] = ACTIONS(1246), + [aux_sym_for_statement_token2] = ACTIONS(1246), + [aux_sym_foreach_statement_token1] = ACTIONS(1246), + [aux_sym_foreach_statement_token2] = ACTIONS(1246), + [aux_sym_if_statement_token1] = ACTIONS(1246), + [aux_sym_if_statement_token2] = ACTIONS(1246), + [aux_sym_else_if_clause_token1] = ACTIONS(1246), + [aux_sym_else_clause_token1] = ACTIONS(1246), + [aux_sym_match_expression_token1] = ACTIONS(1246), + [aux_sym_match_default_expression_token1] = ACTIONS(1246), + [aux_sym_switch_statement_token1] = ACTIONS(1246), + [aux_sym_switch_block_token1] = ACTIONS(1246), + [aux_sym_case_statement_token1] = ACTIONS(1246), + [anon_sym_AT] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_clone] = ACTIONS(1246), + [anon_sym_print] = ACTIONS(1246), + [anon_sym_new] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [sym_shell_command_expression] = ACTIONS(1244), + [anon_sym_list] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_self] = ACTIONS(1246), + [anon_sym_parent] = ACTIONS(1246), + [anon_sym_POUND_LBRACK] = ACTIONS(1244), + [sym_string] = ACTIONS(1244), + [sym_boolean] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [anon_sym_DOLLAR] = ACTIONS(1244), + [anon_sym_yield] = ACTIONS(1246), + [aux_sym_include_expression_token1] = ACTIONS(1246), + [aux_sym_include_once_expression_token1] = ACTIONS(1246), + [aux_sym_require_expression_token1] = ACTIONS(1246), + [aux_sym_require_once_expression_token1] = ACTIONS(1246), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1239), + [sym_heredoc] = ACTIONS(1244), }, [500] = { [sym_text_interpolation] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_name] = ACTIONS(1245), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1243), - [aux_sym_function_static_declaration_token1] = ACTIONS(1245), - [aux_sym_global_declaration_token1] = ACTIONS(1245), - [aux_sym_namespace_definition_token1] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1245), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1245), - [anon_sym_BSLASH] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [aux_sym_trait_declaration_token1] = ACTIONS(1245), - [aux_sym_interface_declaration_token1] = ACTIONS(1245), - [aux_sym_class_declaration_token1] = ACTIONS(1245), - [aux_sym_class_modifier_token1] = ACTIONS(1245), - [aux_sym_class_modifier_token2] = ACTIONS(1245), - [aux_sym_visibility_modifier_token1] = ACTIONS(1245), - [aux_sym_visibility_modifier_token2] = ACTIONS(1245), - [aux_sym_visibility_modifier_token3] = ACTIONS(1245), - [aux_sym_arrow_function_token1] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1243), - [anon_sym_array] = ACTIONS(1245), - [anon_sym_unset] = ACTIONS(1245), - [aux_sym_echo_statement_token1] = ACTIONS(1245), - [anon_sym_declare] = ACTIONS(1245), - [aux_sym_declare_statement_token1] = ACTIONS(1245), - [sym_float] = ACTIONS(1245), - [aux_sym_try_statement_token1] = ACTIONS(1245), - [aux_sym_goto_statement_token1] = ACTIONS(1245), - [aux_sym_continue_statement_token1] = ACTIONS(1245), - [aux_sym_break_statement_token1] = ACTIONS(1245), - [sym_integer] = ACTIONS(1245), - [aux_sym_return_statement_token1] = ACTIONS(1245), - [aux_sym_throw_expression_token1] = ACTIONS(1245), - [aux_sym_while_statement_token1] = ACTIONS(1245), - [aux_sym_while_statement_token2] = ACTIONS(1245), - [aux_sym_do_statement_token1] = ACTIONS(1245), - [aux_sym_for_statement_token1] = ACTIONS(1245), - [aux_sym_for_statement_token2] = ACTIONS(1245), - [aux_sym_foreach_statement_token1] = ACTIONS(1245), - [aux_sym_foreach_statement_token2] = ACTIONS(1245), - [aux_sym_if_statement_token1] = ACTIONS(1245), - [aux_sym_if_statement_token2] = ACTIONS(1245), - [aux_sym_else_if_clause_token1] = ACTIONS(1245), - [aux_sym_else_clause_token1] = ACTIONS(1245), - [aux_sym_match_expression_token1] = ACTIONS(1245), - [aux_sym_match_default_expression_token1] = ACTIONS(1245), - [aux_sym_switch_statement_token1] = ACTIONS(1245), - [aux_sym_switch_block_token1] = ACTIONS(1245), - [aux_sym_case_statement_token1] = ACTIONS(1245), - [anon_sym_AT] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_clone] = ACTIONS(1245), - [anon_sym_print] = ACTIONS(1245), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [sym_shell_command_expression] = ACTIONS(1243), - [anon_sym_list] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_self] = ACTIONS(1245), - [anon_sym_parent] = ACTIONS(1245), - [anon_sym_POUND_LBRACK] = ACTIONS(1243), - [sym_string] = ACTIONS(1243), - [sym_boolean] = ACTIONS(1245), - [sym_null] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_yield] = ACTIONS(1245), - [aux_sym_include_expression_token1] = ACTIONS(1245), - [aux_sym_include_once_expression_token1] = ACTIONS(1245), - [aux_sym_require_expression_token1] = ACTIONS(1245), - [aux_sym_require_once_expression_token1] = ACTIONS(1245), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_name] = ACTIONS(1250), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1248), + [aux_sym_function_static_declaration_token1] = ACTIONS(1250), + [aux_sym_global_declaration_token1] = ACTIONS(1250), + [aux_sym_namespace_definition_token1] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1250), + [anon_sym_BSLASH] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [aux_sym_trait_declaration_token1] = ACTIONS(1250), + [aux_sym_interface_declaration_token1] = ACTIONS(1250), + [aux_sym_class_declaration_token1] = ACTIONS(1250), + [aux_sym_final_modifier_token1] = ACTIONS(1250), + [aux_sym_abstract_modifier_token1] = ACTIONS(1250), + [aux_sym_visibility_modifier_token1] = ACTIONS(1250), + [aux_sym_visibility_modifier_token2] = ACTIONS(1250), + [aux_sym_visibility_modifier_token3] = ACTIONS(1250), + [aux_sym_arrow_function_token1] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_array] = ACTIONS(1250), + [anon_sym_unset] = ACTIONS(1250), + [aux_sym_echo_statement_token1] = ACTIONS(1250), + [anon_sym_declare] = ACTIONS(1250), + [aux_sym_declare_statement_token1] = ACTIONS(1250), + [sym_float] = ACTIONS(1250), + [aux_sym_try_statement_token1] = ACTIONS(1250), + [aux_sym_goto_statement_token1] = ACTIONS(1250), + [aux_sym_continue_statement_token1] = ACTIONS(1250), + [aux_sym_break_statement_token1] = ACTIONS(1250), + [sym_integer] = ACTIONS(1250), + [aux_sym_return_statement_token1] = ACTIONS(1250), + [aux_sym_throw_expression_token1] = ACTIONS(1250), + [aux_sym_while_statement_token1] = ACTIONS(1250), + [aux_sym_while_statement_token2] = ACTIONS(1250), + [aux_sym_do_statement_token1] = ACTIONS(1250), + [aux_sym_for_statement_token1] = ACTIONS(1250), + [aux_sym_for_statement_token2] = ACTIONS(1250), + [aux_sym_foreach_statement_token1] = ACTIONS(1250), + [aux_sym_foreach_statement_token2] = ACTIONS(1250), + [aux_sym_if_statement_token1] = ACTIONS(1250), + [aux_sym_if_statement_token2] = ACTIONS(1250), + [aux_sym_else_if_clause_token1] = ACTIONS(1250), + [aux_sym_else_clause_token1] = ACTIONS(1250), + [aux_sym_match_expression_token1] = ACTIONS(1250), + [aux_sym_match_default_expression_token1] = ACTIONS(1250), + [aux_sym_switch_statement_token1] = ACTIONS(1250), + [aux_sym_switch_block_token1] = ACTIONS(1250), + [aux_sym_case_statement_token1] = ACTIONS(1250), + [anon_sym_AT] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_clone] = ACTIONS(1250), + [anon_sym_print] = ACTIONS(1250), + [anon_sym_new] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [sym_shell_command_expression] = ACTIONS(1248), + [anon_sym_list] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_self] = ACTIONS(1250), + [anon_sym_parent] = ACTIONS(1250), + [anon_sym_POUND_LBRACK] = ACTIONS(1248), + [sym_string] = ACTIONS(1248), + [sym_boolean] = ACTIONS(1250), + [sym_null] = ACTIONS(1250), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_yield] = ACTIONS(1250), + [aux_sym_include_expression_token1] = ACTIONS(1250), + [aux_sym_include_once_expression_token1] = ACTIONS(1250), + [aux_sym_require_expression_token1] = ACTIONS(1250), + [aux_sym_require_once_expression_token1] = ACTIONS(1250), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1243), + [sym_heredoc] = ACTIONS(1248), }, [501] = { [sym_text_interpolation] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1247), - [sym_name] = ACTIONS(1249), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1247), - [aux_sym_function_static_declaration_token1] = ACTIONS(1249), - [aux_sym_global_declaration_token1] = ACTIONS(1249), - [aux_sym_namespace_definition_token1] = ACTIONS(1249), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1249), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1249), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1249), - [anon_sym_BSLASH] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [aux_sym_trait_declaration_token1] = ACTIONS(1249), - [aux_sym_interface_declaration_token1] = ACTIONS(1249), - [aux_sym_class_declaration_token1] = ACTIONS(1249), - [aux_sym_class_modifier_token1] = ACTIONS(1249), - [aux_sym_class_modifier_token2] = ACTIONS(1249), - [aux_sym_visibility_modifier_token1] = ACTIONS(1249), - [aux_sym_visibility_modifier_token2] = ACTIONS(1249), - [aux_sym_visibility_modifier_token3] = ACTIONS(1249), - [aux_sym_arrow_function_token1] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_array] = ACTIONS(1249), - [anon_sym_unset] = ACTIONS(1249), - [aux_sym_echo_statement_token1] = ACTIONS(1249), - [anon_sym_declare] = ACTIONS(1249), - [aux_sym_declare_statement_token1] = ACTIONS(1249), - [sym_float] = ACTIONS(1249), - [aux_sym_try_statement_token1] = ACTIONS(1249), - [aux_sym_goto_statement_token1] = ACTIONS(1249), - [aux_sym_continue_statement_token1] = ACTIONS(1249), - [aux_sym_break_statement_token1] = ACTIONS(1249), - [sym_integer] = ACTIONS(1249), - [aux_sym_return_statement_token1] = ACTIONS(1249), - [aux_sym_throw_expression_token1] = ACTIONS(1249), - [aux_sym_while_statement_token1] = ACTIONS(1249), - [aux_sym_while_statement_token2] = ACTIONS(1249), - [aux_sym_do_statement_token1] = ACTIONS(1249), - [aux_sym_for_statement_token1] = ACTIONS(1249), - [aux_sym_for_statement_token2] = ACTIONS(1249), - [aux_sym_foreach_statement_token1] = ACTIONS(1249), - [aux_sym_foreach_statement_token2] = ACTIONS(1249), - [aux_sym_if_statement_token1] = ACTIONS(1249), - [aux_sym_if_statement_token2] = ACTIONS(1249), - [aux_sym_else_if_clause_token1] = ACTIONS(1249), - [aux_sym_else_clause_token1] = ACTIONS(1249), - [aux_sym_match_expression_token1] = ACTIONS(1249), - [aux_sym_match_default_expression_token1] = ACTIONS(1249), - [aux_sym_switch_statement_token1] = ACTIONS(1249), - [aux_sym_switch_block_token1] = ACTIONS(1249), - [aux_sym_case_statement_token1] = ACTIONS(1249), - [anon_sym_AT] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_clone] = ACTIONS(1249), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_new] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_shell_command_expression] = ACTIONS(1247), - [anon_sym_list] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1247), - [anon_sym_self] = ACTIONS(1249), - [anon_sym_parent] = ACTIONS(1249), - [anon_sym_POUND_LBRACK] = ACTIONS(1247), - [sym_string] = ACTIONS(1247), - [sym_boolean] = ACTIONS(1249), - [sym_null] = ACTIONS(1249), - [anon_sym_DOLLAR] = ACTIONS(1247), - [anon_sym_yield] = ACTIONS(1249), - [aux_sym_include_expression_token1] = ACTIONS(1249), - [aux_sym_include_once_expression_token1] = ACTIONS(1249), - [aux_sym_require_expression_token1] = ACTIONS(1249), - [aux_sym_require_once_expression_token1] = ACTIONS(1249), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_name] = ACTIONS(1254), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1252), + [aux_sym_function_static_declaration_token1] = ACTIONS(1254), + [aux_sym_global_declaration_token1] = ACTIONS(1254), + [aux_sym_namespace_definition_token1] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1254), + [anon_sym_BSLASH] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [aux_sym_trait_declaration_token1] = ACTIONS(1254), + [aux_sym_interface_declaration_token1] = ACTIONS(1254), + [aux_sym_class_declaration_token1] = ACTIONS(1254), + [aux_sym_final_modifier_token1] = ACTIONS(1254), + [aux_sym_abstract_modifier_token1] = ACTIONS(1254), + [aux_sym_visibility_modifier_token1] = ACTIONS(1254), + [aux_sym_visibility_modifier_token2] = ACTIONS(1254), + [aux_sym_visibility_modifier_token3] = ACTIONS(1254), + [aux_sym_arrow_function_token1] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_array] = ACTIONS(1254), + [anon_sym_unset] = ACTIONS(1254), + [aux_sym_echo_statement_token1] = ACTIONS(1254), + [anon_sym_declare] = ACTIONS(1254), + [aux_sym_declare_statement_token1] = ACTIONS(1254), + [sym_float] = ACTIONS(1254), + [aux_sym_try_statement_token1] = ACTIONS(1254), + [aux_sym_goto_statement_token1] = ACTIONS(1254), + [aux_sym_continue_statement_token1] = ACTIONS(1254), + [aux_sym_break_statement_token1] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [aux_sym_return_statement_token1] = ACTIONS(1254), + [aux_sym_throw_expression_token1] = ACTIONS(1254), + [aux_sym_while_statement_token1] = ACTIONS(1254), + [aux_sym_while_statement_token2] = ACTIONS(1254), + [aux_sym_do_statement_token1] = ACTIONS(1254), + [aux_sym_for_statement_token1] = ACTIONS(1254), + [aux_sym_for_statement_token2] = ACTIONS(1254), + [aux_sym_foreach_statement_token1] = ACTIONS(1254), + [aux_sym_foreach_statement_token2] = ACTIONS(1254), + [aux_sym_if_statement_token1] = ACTIONS(1254), + [aux_sym_if_statement_token2] = ACTIONS(1254), + [aux_sym_else_if_clause_token1] = ACTIONS(1254), + [aux_sym_else_clause_token1] = ACTIONS(1254), + [aux_sym_match_expression_token1] = ACTIONS(1254), + [aux_sym_match_default_expression_token1] = ACTIONS(1254), + [aux_sym_switch_statement_token1] = ACTIONS(1254), + [aux_sym_switch_block_token1] = ACTIONS(1254), + [aux_sym_case_statement_token1] = ACTIONS(1254), + [anon_sym_AT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_clone] = ACTIONS(1254), + [anon_sym_print] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [sym_shell_command_expression] = ACTIONS(1252), + [anon_sym_list] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_self] = ACTIONS(1254), + [anon_sym_parent] = ACTIONS(1254), + [anon_sym_POUND_LBRACK] = ACTIONS(1252), + [sym_string] = ACTIONS(1252), + [sym_boolean] = ACTIONS(1254), + [sym_null] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1252), + [anon_sym_yield] = ACTIONS(1254), + [aux_sym_include_expression_token1] = ACTIONS(1254), + [aux_sym_include_once_expression_token1] = ACTIONS(1254), + [aux_sym_require_expression_token1] = ACTIONS(1254), + [aux_sym_require_once_expression_token1] = ACTIONS(1254), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1247), + [sym_heredoc] = ACTIONS(1252), }, [502] = { [sym_text_interpolation] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_name] = ACTIONS(1253), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1251), - [aux_sym_function_static_declaration_token1] = ACTIONS(1253), - [aux_sym_global_declaration_token1] = ACTIONS(1253), - [aux_sym_namespace_definition_token1] = ACTIONS(1253), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1253), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1253), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1253), - [anon_sym_BSLASH] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [aux_sym_trait_declaration_token1] = ACTIONS(1253), - [aux_sym_interface_declaration_token1] = ACTIONS(1253), - [aux_sym_class_declaration_token1] = ACTIONS(1253), - [aux_sym_class_modifier_token1] = ACTIONS(1253), - [aux_sym_class_modifier_token2] = ACTIONS(1253), - [aux_sym_visibility_modifier_token1] = ACTIONS(1253), - [aux_sym_visibility_modifier_token2] = ACTIONS(1253), - [aux_sym_visibility_modifier_token3] = ACTIONS(1253), - [aux_sym_arrow_function_token1] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_array] = ACTIONS(1253), - [anon_sym_unset] = ACTIONS(1253), - [aux_sym_echo_statement_token1] = ACTIONS(1253), - [anon_sym_declare] = ACTIONS(1253), - [aux_sym_declare_statement_token1] = ACTIONS(1253), - [sym_float] = ACTIONS(1253), - [aux_sym_try_statement_token1] = ACTIONS(1253), - [aux_sym_goto_statement_token1] = ACTIONS(1253), - [aux_sym_continue_statement_token1] = ACTIONS(1253), - [aux_sym_break_statement_token1] = ACTIONS(1253), - [sym_integer] = ACTIONS(1253), - [aux_sym_return_statement_token1] = ACTIONS(1253), - [aux_sym_throw_expression_token1] = ACTIONS(1253), - [aux_sym_while_statement_token1] = ACTIONS(1253), - [aux_sym_while_statement_token2] = ACTIONS(1253), - [aux_sym_do_statement_token1] = ACTIONS(1253), - [aux_sym_for_statement_token1] = ACTIONS(1253), - [aux_sym_for_statement_token2] = ACTIONS(1253), - [aux_sym_foreach_statement_token1] = ACTIONS(1253), - [aux_sym_foreach_statement_token2] = ACTIONS(1253), - [aux_sym_if_statement_token1] = ACTIONS(1253), - [aux_sym_if_statement_token2] = ACTIONS(1253), - [aux_sym_else_if_clause_token1] = ACTIONS(1253), - [aux_sym_else_clause_token1] = ACTIONS(1253), - [aux_sym_match_expression_token1] = ACTIONS(1253), - [aux_sym_match_default_expression_token1] = ACTIONS(1253), - [aux_sym_switch_statement_token1] = ACTIONS(1253), - [aux_sym_switch_block_token1] = ACTIONS(1253), - [aux_sym_case_statement_token1] = ACTIONS(1253), - [anon_sym_AT] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_clone] = ACTIONS(1253), - [anon_sym_print] = ACTIONS(1253), - [anon_sym_new] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [sym_shell_command_expression] = ACTIONS(1251), - [anon_sym_list] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_self] = ACTIONS(1253), - [anon_sym_parent] = ACTIONS(1253), - [anon_sym_POUND_LBRACK] = ACTIONS(1251), - [sym_string] = ACTIONS(1251), - [sym_boolean] = ACTIONS(1253), - [sym_null] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1251), - [anon_sym_yield] = ACTIONS(1253), - [aux_sym_include_expression_token1] = ACTIONS(1253), - [aux_sym_include_once_expression_token1] = ACTIONS(1253), - [aux_sym_require_expression_token1] = ACTIONS(1253), - [aux_sym_require_once_expression_token1] = ACTIONS(1253), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_name] = ACTIONS(1258), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1256), + [aux_sym_function_static_declaration_token1] = ACTIONS(1258), + [aux_sym_global_declaration_token1] = ACTIONS(1258), + [aux_sym_namespace_definition_token1] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1258), + [anon_sym_BSLASH] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [aux_sym_trait_declaration_token1] = ACTIONS(1258), + [aux_sym_interface_declaration_token1] = ACTIONS(1258), + [aux_sym_class_declaration_token1] = ACTIONS(1258), + [aux_sym_final_modifier_token1] = ACTIONS(1258), + [aux_sym_abstract_modifier_token1] = ACTIONS(1258), + [aux_sym_visibility_modifier_token1] = ACTIONS(1258), + [aux_sym_visibility_modifier_token2] = ACTIONS(1258), + [aux_sym_visibility_modifier_token3] = ACTIONS(1258), + [aux_sym_arrow_function_token1] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_array] = ACTIONS(1258), + [anon_sym_unset] = ACTIONS(1258), + [aux_sym_echo_statement_token1] = ACTIONS(1258), + [anon_sym_declare] = ACTIONS(1258), + [aux_sym_declare_statement_token1] = ACTIONS(1258), + [sym_float] = ACTIONS(1258), + [aux_sym_try_statement_token1] = ACTIONS(1258), + [aux_sym_goto_statement_token1] = ACTIONS(1258), + [aux_sym_continue_statement_token1] = ACTIONS(1258), + [aux_sym_break_statement_token1] = ACTIONS(1258), + [sym_integer] = ACTIONS(1258), + [aux_sym_return_statement_token1] = ACTIONS(1258), + [aux_sym_throw_expression_token1] = ACTIONS(1258), + [aux_sym_while_statement_token1] = ACTIONS(1258), + [aux_sym_while_statement_token2] = ACTIONS(1258), + [aux_sym_do_statement_token1] = ACTIONS(1258), + [aux_sym_for_statement_token1] = ACTIONS(1258), + [aux_sym_for_statement_token2] = ACTIONS(1258), + [aux_sym_foreach_statement_token1] = ACTIONS(1258), + [aux_sym_foreach_statement_token2] = ACTIONS(1258), + [aux_sym_if_statement_token1] = ACTIONS(1258), + [aux_sym_if_statement_token2] = ACTIONS(1258), + [aux_sym_else_if_clause_token1] = ACTIONS(1258), + [aux_sym_else_clause_token1] = ACTIONS(1258), + [aux_sym_match_expression_token1] = ACTIONS(1258), + [aux_sym_match_default_expression_token1] = ACTIONS(1258), + [aux_sym_switch_statement_token1] = ACTIONS(1258), + [aux_sym_switch_block_token1] = ACTIONS(1258), + [aux_sym_case_statement_token1] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_clone] = ACTIONS(1258), + [anon_sym_print] = ACTIONS(1258), + [anon_sym_new] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [sym_shell_command_expression] = ACTIONS(1256), + [anon_sym_list] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_self] = ACTIONS(1258), + [anon_sym_parent] = ACTIONS(1258), + [anon_sym_POUND_LBRACK] = ACTIONS(1256), + [sym_string] = ACTIONS(1256), + [sym_boolean] = ACTIONS(1258), + [sym_null] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1258), + [aux_sym_include_expression_token1] = ACTIONS(1258), + [aux_sym_include_once_expression_token1] = ACTIONS(1258), + [aux_sym_require_expression_token1] = ACTIONS(1258), + [aux_sym_require_once_expression_token1] = ACTIONS(1258), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1251), + [sym_heredoc] = ACTIONS(1256), }, [503] = { [sym_text_interpolation] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1255), - [sym_name] = ACTIONS(1257), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1255), - [aux_sym_function_static_declaration_token1] = ACTIONS(1257), - [aux_sym_global_declaration_token1] = ACTIONS(1257), - [aux_sym_namespace_definition_token1] = ACTIONS(1257), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1257), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1257), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1257), - [anon_sym_BSLASH] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [aux_sym_trait_declaration_token1] = ACTIONS(1257), - [aux_sym_interface_declaration_token1] = ACTIONS(1257), - [aux_sym_class_declaration_token1] = ACTIONS(1257), - [aux_sym_class_modifier_token1] = ACTIONS(1257), - [aux_sym_class_modifier_token2] = ACTIONS(1257), - [aux_sym_visibility_modifier_token1] = ACTIONS(1257), - [aux_sym_visibility_modifier_token2] = ACTIONS(1257), - [aux_sym_visibility_modifier_token3] = ACTIONS(1257), - [aux_sym_arrow_function_token1] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1255), - [anon_sym_array] = ACTIONS(1257), - [anon_sym_unset] = ACTIONS(1257), - [aux_sym_echo_statement_token1] = ACTIONS(1257), - [anon_sym_declare] = ACTIONS(1257), - [aux_sym_declare_statement_token1] = ACTIONS(1257), - [sym_float] = ACTIONS(1257), - [aux_sym_try_statement_token1] = ACTIONS(1257), - [aux_sym_goto_statement_token1] = ACTIONS(1257), - [aux_sym_continue_statement_token1] = ACTIONS(1257), - [aux_sym_break_statement_token1] = ACTIONS(1257), - [sym_integer] = ACTIONS(1257), - [aux_sym_return_statement_token1] = ACTIONS(1257), - [aux_sym_throw_expression_token1] = ACTIONS(1257), - [aux_sym_while_statement_token1] = ACTIONS(1257), - [aux_sym_while_statement_token2] = ACTIONS(1257), - [aux_sym_do_statement_token1] = ACTIONS(1257), - [aux_sym_for_statement_token1] = ACTIONS(1257), - [aux_sym_for_statement_token2] = ACTIONS(1257), - [aux_sym_foreach_statement_token1] = ACTIONS(1257), - [aux_sym_foreach_statement_token2] = ACTIONS(1257), - [aux_sym_if_statement_token1] = ACTIONS(1257), - [aux_sym_if_statement_token2] = ACTIONS(1257), - [aux_sym_else_if_clause_token1] = ACTIONS(1257), - [aux_sym_else_clause_token1] = ACTIONS(1257), - [aux_sym_match_expression_token1] = ACTIONS(1257), - [aux_sym_match_default_expression_token1] = ACTIONS(1257), - [aux_sym_switch_statement_token1] = ACTIONS(1257), - [aux_sym_switch_block_token1] = ACTIONS(1257), - [aux_sym_case_statement_token1] = ACTIONS(1257), - [anon_sym_AT] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_clone] = ACTIONS(1257), - [anon_sym_print] = ACTIONS(1257), - [anon_sym_new] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [sym_shell_command_expression] = ACTIONS(1255), - [anon_sym_list] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1255), - [anon_sym_self] = ACTIONS(1257), - [anon_sym_parent] = ACTIONS(1257), - [anon_sym_POUND_LBRACK] = ACTIONS(1255), - [sym_string] = ACTIONS(1255), - [sym_boolean] = ACTIONS(1257), - [sym_null] = ACTIONS(1257), - [anon_sym_DOLLAR] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(1257), - [aux_sym_include_expression_token1] = ACTIONS(1257), - [aux_sym_include_once_expression_token1] = ACTIONS(1257), - [aux_sym_require_expression_token1] = ACTIONS(1257), - [aux_sym_require_once_expression_token1] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_name] = ACTIONS(1262), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1260), + [aux_sym_function_static_declaration_token1] = ACTIONS(1262), + [aux_sym_global_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_definition_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1262), + [anon_sym_BSLASH] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [aux_sym_trait_declaration_token1] = ACTIONS(1262), + [aux_sym_interface_declaration_token1] = ACTIONS(1262), + [aux_sym_class_declaration_token1] = ACTIONS(1262), + [aux_sym_final_modifier_token1] = ACTIONS(1262), + [aux_sym_abstract_modifier_token1] = ACTIONS(1262), + [aux_sym_visibility_modifier_token1] = ACTIONS(1262), + [aux_sym_visibility_modifier_token2] = ACTIONS(1262), + [aux_sym_visibility_modifier_token3] = ACTIONS(1262), + [aux_sym_arrow_function_token1] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1260), + [anon_sym_array] = ACTIONS(1262), + [anon_sym_unset] = ACTIONS(1262), + [aux_sym_echo_statement_token1] = ACTIONS(1262), + [anon_sym_declare] = ACTIONS(1262), + [aux_sym_declare_statement_token1] = ACTIONS(1262), + [sym_float] = ACTIONS(1262), + [aux_sym_try_statement_token1] = ACTIONS(1262), + [aux_sym_goto_statement_token1] = ACTIONS(1262), + [aux_sym_continue_statement_token1] = ACTIONS(1262), + [aux_sym_break_statement_token1] = ACTIONS(1262), + [sym_integer] = ACTIONS(1262), + [aux_sym_return_statement_token1] = ACTIONS(1262), + [aux_sym_throw_expression_token1] = ACTIONS(1262), + [aux_sym_while_statement_token1] = ACTIONS(1262), + [aux_sym_while_statement_token2] = ACTIONS(1262), + [aux_sym_do_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token2] = ACTIONS(1262), + [aux_sym_foreach_statement_token1] = ACTIONS(1262), + [aux_sym_foreach_statement_token2] = ACTIONS(1262), + [aux_sym_if_statement_token1] = ACTIONS(1262), + [aux_sym_if_statement_token2] = ACTIONS(1262), + [aux_sym_else_if_clause_token1] = ACTIONS(1262), + [aux_sym_else_clause_token1] = ACTIONS(1262), + [aux_sym_match_expression_token1] = ACTIONS(1262), + [aux_sym_match_default_expression_token1] = ACTIONS(1262), + [aux_sym_switch_statement_token1] = ACTIONS(1262), + [aux_sym_switch_block_token1] = ACTIONS(1262), + [aux_sym_case_statement_token1] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_clone] = ACTIONS(1262), + [anon_sym_print] = ACTIONS(1262), + [anon_sym_new] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [sym_shell_command_expression] = ACTIONS(1260), + [anon_sym_list] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_self] = ACTIONS(1262), + [anon_sym_parent] = ACTIONS(1262), + [anon_sym_POUND_LBRACK] = ACTIONS(1260), + [sym_string] = ACTIONS(1260), + [sym_boolean] = ACTIONS(1262), + [sym_null] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_yield] = ACTIONS(1262), + [aux_sym_include_expression_token1] = ACTIONS(1262), + [aux_sym_include_once_expression_token1] = ACTIONS(1262), + [aux_sym_require_expression_token1] = ACTIONS(1262), + [aux_sym_require_once_expression_token1] = ACTIONS(1262), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1255), + [sym_heredoc] = ACTIONS(1260), }, [504] = { [sym_text_interpolation] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1259), - [sym_name] = ACTIONS(1261), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1259), - [aux_sym_function_static_declaration_token1] = ACTIONS(1261), - [aux_sym_global_declaration_token1] = ACTIONS(1261), - [aux_sym_namespace_definition_token1] = ACTIONS(1261), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1261), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1261), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1261), - [anon_sym_BSLASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [aux_sym_trait_declaration_token1] = ACTIONS(1261), - [aux_sym_interface_declaration_token1] = ACTIONS(1261), - [aux_sym_class_declaration_token1] = ACTIONS(1261), - [aux_sym_class_modifier_token1] = ACTIONS(1261), - [aux_sym_class_modifier_token2] = ACTIONS(1261), - [aux_sym_visibility_modifier_token1] = ACTIONS(1261), - [aux_sym_visibility_modifier_token2] = ACTIONS(1261), - [aux_sym_visibility_modifier_token3] = ACTIONS(1261), - [aux_sym_arrow_function_token1] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_array] = ACTIONS(1261), - [anon_sym_unset] = ACTIONS(1261), - [aux_sym_echo_statement_token1] = ACTIONS(1261), - [anon_sym_declare] = ACTIONS(1261), - [aux_sym_declare_statement_token1] = ACTIONS(1261), - [sym_float] = ACTIONS(1261), - [aux_sym_try_statement_token1] = ACTIONS(1261), - [aux_sym_goto_statement_token1] = ACTIONS(1261), - [aux_sym_continue_statement_token1] = ACTIONS(1261), - [aux_sym_break_statement_token1] = ACTIONS(1261), - [sym_integer] = ACTIONS(1261), - [aux_sym_return_statement_token1] = ACTIONS(1261), - [aux_sym_throw_expression_token1] = ACTIONS(1261), - [aux_sym_while_statement_token1] = ACTIONS(1261), - [aux_sym_while_statement_token2] = ACTIONS(1261), - [aux_sym_do_statement_token1] = ACTIONS(1261), - [aux_sym_for_statement_token1] = ACTIONS(1261), - [aux_sym_for_statement_token2] = ACTIONS(1261), - [aux_sym_foreach_statement_token1] = ACTIONS(1261), - [aux_sym_foreach_statement_token2] = ACTIONS(1261), - [aux_sym_if_statement_token1] = ACTIONS(1261), - [aux_sym_if_statement_token2] = ACTIONS(1261), - [aux_sym_else_if_clause_token1] = ACTIONS(1261), - [aux_sym_else_clause_token1] = ACTIONS(1261), - [aux_sym_match_expression_token1] = ACTIONS(1261), - [aux_sym_match_default_expression_token1] = ACTIONS(1261), - [aux_sym_switch_statement_token1] = ACTIONS(1261), - [aux_sym_switch_block_token1] = ACTIONS(1261), - [aux_sym_case_statement_token1] = ACTIONS(1261), - [anon_sym_AT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_clone] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1261), - [anon_sym_new] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [sym_shell_command_expression] = ACTIONS(1259), - [anon_sym_list] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1259), - [anon_sym_self] = ACTIONS(1261), - [anon_sym_parent] = ACTIONS(1261), - [anon_sym_POUND_LBRACK] = ACTIONS(1259), - [sym_string] = ACTIONS(1259), - [sym_boolean] = ACTIONS(1261), - [sym_null] = ACTIONS(1261), - [anon_sym_DOLLAR] = ACTIONS(1259), - [anon_sym_yield] = ACTIONS(1261), - [aux_sym_include_expression_token1] = ACTIONS(1261), - [aux_sym_include_once_expression_token1] = ACTIONS(1261), - [aux_sym_require_expression_token1] = ACTIONS(1261), - [aux_sym_require_once_expression_token1] = ACTIONS(1261), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_name] = ACTIONS(1266), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1264), + [aux_sym_function_static_declaration_token1] = ACTIONS(1266), + [aux_sym_global_declaration_token1] = ACTIONS(1266), + [aux_sym_namespace_definition_token1] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1266), + [anon_sym_BSLASH] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [aux_sym_trait_declaration_token1] = ACTIONS(1266), + [aux_sym_interface_declaration_token1] = ACTIONS(1266), + [aux_sym_class_declaration_token1] = ACTIONS(1266), + [aux_sym_final_modifier_token1] = ACTIONS(1266), + [aux_sym_abstract_modifier_token1] = ACTIONS(1266), + [aux_sym_visibility_modifier_token1] = ACTIONS(1266), + [aux_sym_visibility_modifier_token2] = ACTIONS(1266), + [aux_sym_visibility_modifier_token3] = ACTIONS(1266), + [aux_sym_arrow_function_token1] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_array] = ACTIONS(1266), + [anon_sym_unset] = ACTIONS(1266), + [aux_sym_echo_statement_token1] = ACTIONS(1266), + [anon_sym_declare] = ACTIONS(1266), + [aux_sym_declare_statement_token1] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [aux_sym_try_statement_token1] = ACTIONS(1266), + [aux_sym_goto_statement_token1] = ACTIONS(1266), + [aux_sym_continue_statement_token1] = ACTIONS(1266), + [aux_sym_break_statement_token1] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [aux_sym_return_statement_token1] = ACTIONS(1266), + [aux_sym_throw_expression_token1] = ACTIONS(1266), + [aux_sym_while_statement_token1] = ACTIONS(1266), + [aux_sym_while_statement_token2] = ACTIONS(1266), + [aux_sym_do_statement_token1] = ACTIONS(1266), + [aux_sym_for_statement_token1] = ACTIONS(1266), + [aux_sym_for_statement_token2] = ACTIONS(1266), + [aux_sym_foreach_statement_token1] = ACTIONS(1266), + [aux_sym_foreach_statement_token2] = ACTIONS(1266), + [aux_sym_if_statement_token1] = ACTIONS(1266), + [aux_sym_if_statement_token2] = ACTIONS(1266), + [aux_sym_else_if_clause_token1] = ACTIONS(1266), + [aux_sym_else_clause_token1] = ACTIONS(1266), + [aux_sym_match_expression_token1] = ACTIONS(1266), + [aux_sym_match_default_expression_token1] = ACTIONS(1266), + [aux_sym_switch_statement_token1] = ACTIONS(1266), + [aux_sym_switch_block_token1] = ACTIONS(1266), + [aux_sym_case_statement_token1] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_clone] = ACTIONS(1266), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_new] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [sym_shell_command_expression] = ACTIONS(1264), + [anon_sym_list] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_self] = ACTIONS(1266), + [anon_sym_parent] = ACTIONS(1266), + [anon_sym_POUND_LBRACK] = ACTIONS(1264), + [sym_string] = ACTIONS(1264), + [sym_boolean] = ACTIONS(1266), + [sym_null] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [aux_sym_include_expression_token1] = ACTIONS(1266), + [aux_sym_include_once_expression_token1] = ACTIONS(1266), + [aux_sym_require_expression_token1] = ACTIONS(1266), + [aux_sym_require_once_expression_token1] = ACTIONS(1266), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1259), + [sym_heredoc] = ACTIONS(1264), }, [505] = { [sym_text_interpolation] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1263), - [sym_name] = ACTIONS(1265), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1263), - [aux_sym_function_static_declaration_token1] = ACTIONS(1265), - [aux_sym_global_declaration_token1] = ACTIONS(1265), - [aux_sym_namespace_definition_token1] = ACTIONS(1265), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1265), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1265), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1265), - [anon_sym_BSLASH] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [aux_sym_trait_declaration_token1] = ACTIONS(1265), - [aux_sym_interface_declaration_token1] = ACTIONS(1265), - [aux_sym_class_declaration_token1] = ACTIONS(1265), - [aux_sym_class_modifier_token1] = ACTIONS(1265), - [aux_sym_class_modifier_token2] = ACTIONS(1265), - [aux_sym_visibility_modifier_token1] = ACTIONS(1265), - [aux_sym_visibility_modifier_token2] = ACTIONS(1265), - [aux_sym_visibility_modifier_token3] = ACTIONS(1265), - [aux_sym_arrow_function_token1] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_array] = ACTIONS(1265), - [anon_sym_unset] = ACTIONS(1265), - [aux_sym_echo_statement_token1] = ACTIONS(1265), - [anon_sym_declare] = ACTIONS(1265), - [aux_sym_declare_statement_token1] = ACTIONS(1265), - [sym_float] = ACTIONS(1265), - [aux_sym_try_statement_token1] = ACTIONS(1265), - [aux_sym_goto_statement_token1] = ACTIONS(1265), - [aux_sym_continue_statement_token1] = ACTIONS(1265), - [aux_sym_break_statement_token1] = ACTIONS(1265), - [sym_integer] = ACTIONS(1265), - [aux_sym_return_statement_token1] = ACTIONS(1265), - [aux_sym_throw_expression_token1] = ACTIONS(1265), - [aux_sym_while_statement_token1] = ACTIONS(1265), - [aux_sym_while_statement_token2] = ACTIONS(1265), - [aux_sym_do_statement_token1] = ACTIONS(1265), - [aux_sym_for_statement_token1] = ACTIONS(1265), - [aux_sym_for_statement_token2] = ACTIONS(1265), - [aux_sym_foreach_statement_token1] = ACTIONS(1265), - [aux_sym_foreach_statement_token2] = ACTIONS(1265), - [aux_sym_if_statement_token1] = ACTIONS(1265), - [aux_sym_if_statement_token2] = ACTIONS(1265), - [aux_sym_else_if_clause_token1] = ACTIONS(1265), - [aux_sym_else_clause_token1] = ACTIONS(1265), - [aux_sym_match_expression_token1] = ACTIONS(1265), - [aux_sym_match_default_expression_token1] = ACTIONS(1265), - [aux_sym_switch_statement_token1] = ACTIONS(1265), - [aux_sym_switch_block_token1] = ACTIONS(1265), - [aux_sym_case_statement_token1] = ACTIONS(1265), - [anon_sym_AT] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_clone] = ACTIONS(1265), - [anon_sym_print] = ACTIONS(1265), - [anon_sym_new] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [sym_shell_command_expression] = ACTIONS(1263), - [anon_sym_list] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_self] = ACTIONS(1265), - [anon_sym_parent] = ACTIONS(1265), - [anon_sym_POUND_LBRACK] = ACTIONS(1263), - [sym_string] = ACTIONS(1263), - [sym_boolean] = ACTIONS(1265), - [sym_null] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1265), - [aux_sym_include_expression_token1] = ACTIONS(1265), - [aux_sym_include_once_expression_token1] = ACTIONS(1265), - [aux_sym_require_expression_token1] = ACTIONS(1265), - [aux_sym_require_once_expression_token1] = ACTIONS(1265), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_name] = ACTIONS(1270), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1268), + [aux_sym_function_static_declaration_token1] = ACTIONS(1270), + [aux_sym_global_declaration_token1] = ACTIONS(1270), + [aux_sym_namespace_definition_token1] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1270), + [anon_sym_BSLASH] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [aux_sym_trait_declaration_token1] = ACTIONS(1270), + [aux_sym_interface_declaration_token1] = ACTIONS(1270), + [aux_sym_class_declaration_token1] = ACTIONS(1270), + [aux_sym_final_modifier_token1] = ACTIONS(1270), + [aux_sym_abstract_modifier_token1] = ACTIONS(1270), + [aux_sym_visibility_modifier_token1] = ACTIONS(1270), + [aux_sym_visibility_modifier_token2] = ACTIONS(1270), + [aux_sym_visibility_modifier_token3] = ACTIONS(1270), + [aux_sym_arrow_function_token1] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_array] = ACTIONS(1270), + [anon_sym_unset] = ACTIONS(1270), + [aux_sym_echo_statement_token1] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [aux_sym_declare_statement_token1] = ACTIONS(1270), + [sym_float] = ACTIONS(1270), + [aux_sym_try_statement_token1] = ACTIONS(1270), + [aux_sym_goto_statement_token1] = ACTIONS(1270), + [aux_sym_continue_statement_token1] = ACTIONS(1270), + [aux_sym_break_statement_token1] = ACTIONS(1270), + [sym_integer] = ACTIONS(1270), + [aux_sym_return_statement_token1] = ACTIONS(1270), + [aux_sym_throw_expression_token1] = ACTIONS(1270), + [aux_sym_while_statement_token1] = ACTIONS(1270), + [aux_sym_while_statement_token2] = ACTIONS(1270), + [aux_sym_do_statement_token1] = ACTIONS(1270), + [aux_sym_for_statement_token1] = ACTIONS(1270), + [aux_sym_for_statement_token2] = ACTIONS(1270), + [aux_sym_foreach_statement_token1] = ACTIONS(1270), + [aux_sym_foreach_statement_token2] = ACTIONS(1270), + [aux_sym_if_statement_token1] = ACTIONS(1270), + [aux_sym_if_statement_token2] = ACTIONS(1270), + [aux_sym_else_if_clause_token1] = ACTIONS(1270), + [aux_sym_else_clause_token1] = ACTIONS(1270), + [aux_sym_match_expression_token1] = ACTIONS(1270), + [aux_sym_match_default_expression_token1] = ACTIONS(1270), + [aux_sym_switch_statement_token1] = ACTIONS(1270), + [aux_sym_switch_block_token1] = ACTIONS(1270), + [aux_sym_case_statement_token1] = ACTIONS(1270), + [anon_sym_AT] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_clone] = ACTIONS(1270), + [anon_sym_print] = ACTIONS(1270), + [anon_sym_new] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [sym_shell_command_expression] = ACTIONS(1268), + [anon_sym_list] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_self] = ACTIONS(1270), + [anon_sym_parent] = ACTIONS(1270), + [anon_sym_POUND_LBRACK] = ACTIONS(1268), + [sym_string] = ACTIONS(1268), + [sym_boolean] = ACTIONS(1270), + [sym_null] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1268), + [anon_sym_yield] = ACTIONS(1270), + [aux_sym_include_expression_token1] = ACTIONS(1270), + [aux_sym_include_once_expression_token1] = ACTIONS(1270), + [aux_sym_require_expression_token1] = ACTIONS(1270), + [aux_sym_require_once_expression_token1] = ACTIONS(1270), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1263), + [sym_heredoc] = ACTIONS(1268), }, [506] = { [sym_text_interpolation] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1267), - [sym_name] = ACTIONS(1269), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1267), - [aux_sym_function_static_declaration_token1] = ACTIONS(1269), - [aux_sym_global_declaration_token1] = ACTIONS(1269), - [aux_sym_namespace_definition_token1] = ACTIONS(1269), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1269), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1269), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1269), - [anon_sym_BSLASH] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), - [aux_sym_trait_declaration_token1] = ACTIONS(1269), - [aux_sym_interface_declaration_token1] = ACTIONS(1269), - [aux_sym_class_declaration_token1] = ACTIONS(1269), - [aux_sym_class_modifier_token1] = ACTIONS(1269), - [aux_sym_class_modifier_token2] = ACTIONS(1269), - [aux_sym_visibility_modifier_token1] = ACTIONS(1269), - [aux_sym_visibility_modifier_token2] = ACTIONS(1269), - [aux_sym_visibility_modifier_token3] = ACTIONS(1269), - [aux_sym_arrow_function_token1] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_array] = ACTIONS(1269), - [anon_sym_unset] = ACTIONS(1269), - [aux_sym_echo_statement_token1] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [aux_sym_declare_statement_token1] = ACTIONS(1269), - [sym_float] = ACTIONS(1269), - [aux_sym_try_statement_token1] = ACTIONS(1269), - [aux_sym_goto_statement_token1] = ACTIONS(1269), - [aux_sym_continue_statement_token1] = ACTIONS(1269), - [aux_sym_break_statement_token1] = ACTIONS(1269), - [sym_integer] = ACTIONS(1269), - [aux_sym_return_statement_token1] = ACTIONS(1269), - [aux_sym_throw_expression_token1] = ACTIONS(1269), - [aux_sym_while_statement_token1] = ACTIONS(1269), - [aux_sym_while_statement_token2] = ACTIONS(1269), - [aux_sym_do_statement_token1] = ACTIONS(1269), - [aux_sym_for_statement_token1] = ACTIONS(1269), - [aux_sym_for_statement_token2] = ACTIONS(1269), - [aux_sym_foreach_statement_token1] = ACTIONS(1269), - [aux_sym_foreach_statement_token2] = ACTIONS(1269), - [aux_sym_if_statement_token1] = ACTIONS(1269), - [aux_sym_if_statement_token2] = ACTIONS(1269), - [aux_sym_else_if_clause_token1] = ACTIONS(1269), - [aux_sym_else_clause_token1] = ACTIONS(1269), - [aux_sym_match_expression_token1] = ACTIONS(1269), - [aux_sym_match_default_expression_token1] = ACTIONS(1269), - [aux_sym_switch_statement_token1] = ACTIONS(1269), - [aux_sym_switch_block_token1] = ACTIONS(1269), - [aux_sym_case_statement_token1] = ACTIONS(1269), - [anon_sym_AT] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_clone] = ACTIONS(1269), - [anon_sym_print] = ACTIONS(1269), - [anon_sym_new] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [sym_shell_command_expression] = ACTIONS(1267), - [anon_sym_list] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1267), - [anon_sym_self] = ACTIONS(1269), - [anon_sym_parent] = ACTIONS(1269), - [anon_sym_POUND_LBRACK] = ACTIONS(1267), - [sym_string] = ACTIONS(1267), - [sym_boolean] = ACTIONS(1269), - [sym_null] = ACTIONS(1269), - [anon_sym_DOLLAR] = ACTIONS(1267), - [anon_sym_yield] = ACTIONS(1269), - [aux_sym_include_expression_token1] = ACTIONS(1269), - [aux_sym_include_once_expression_token1] = ACTIONS(1269), - [aux_sym_require_expression_token1] = ACTIONS(1269), - [aux_sym_require_once_expression_token1] = ACTIONS(1269), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_name] = ACTIONS(1274), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1272), + [aux_sym_function_static_declaration_token1] = ACTIONS(1274), + [aux_sym_global_declaration_token1] = ACTIONS(1274), + [aux_sym_namespace_definition_token1] = ACTIONS(1274), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1274), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1274), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1274), + [anon_sym_BSLASH] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [aux_sym_trait_declaration_token1] = ACTIONS(1274), + [aux_sym_interface_declaration_token1] = ACTIONS(1274), + [aux_sym_class_declaration_token1] = ACTIONS(1274), + [aux_sym_final_modifier_token1] = ACTIONS(1274), + [aux_sym_abstract_modifier_token1] = ACTIONS(1274), + [aux_sym_visibility_modifier_token1] = ACTIONS(1274), + [aux_sym_visibility_modifier_token2] = ACTIONS(1274), + [aux_sym_visibility_modifier_token3] = ACTIONS(1274), + [aux_sym_arrow_function_token1] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_array] = ACTIONS(1274), + [anon_sym_unset] = ACTIONS(1274), + [aux_sym_echo_statement_token1] = ACTIONS(1274), + [anon_sym_declare] = ACTIONS(1274), + [aux_sym_declare_statement_token1] = ACTIONS(1274), + [sym_float] = ACTIONS(1274), + [aux_sym_try_statement_token1] = ACTIONS(1274), + [aux_sym_goto_statement_token1] = ACTIONS(1274), + [aux_sym_continue_statement_token1] = ACTIONS(1274), + [aux_sym_break_statement_token1] = ACTIONS(1274), + [sym_integer] = ACTIONS(1274), + [aux_sym_return_statement_token1] = ACTIONS(1274), + [aux_sym_throw_expression_token1] = ACTIONS(1274), + [aux_sym_while_statement_token1] = ACTIONS(1274), + [aux_sym_while_statement_token2] = ACTIONS(1274), + [aux_sym_do_statement_token1] = ACTIONS(1274), + [aux_sym_for_statement_token1] = ACTIONS(1274), + [aux_sym_for_statement_token2] = ACTIONS(1274), + [aux_sym_foreach_statement_token1] = ACTIONS(1274), + [aux_sym_foreach_statement_token2] = ACTIONS(1274), + [aux_sym_if_statement_token1] = ACTIONS(1274), + [aux_sym_if_statement_token2] = ACTIONS(1274), + [aux_sym_else_if_clause_token1] = ACTIONS(1274), + [aux_sym_else_clause_token1] = ACTIONS(1274), + [aux_sym_match_expression_token1] = ACTIONS(1274), + [aux_sym_match_default_expression_token1] = ACTIONS(1274), + [aux_sym_switch_statement_token1] = ACTIONS(1274), + [aux_sym_switch_block_token1] = ACTIONS(1274), + [aux_sym_case_statement_token1] = ACTIONS(1274), + [anon_sym_AT] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_clone] = ACTIONS(1274), + [anon_sym_print] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [sym_shell_command_expression] = ACTIONS(1272), + [anon_sym_list] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(1274), + [anon_sym_parent] = ACTIONS(1274), + [anon_sym_POUND_LBRACK] = ACTIONS(1272), + [sym_string] = ACTIONS(1272), + [sym_boolean] = ACTIONS(1274), + [sym_null] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1272), + [anon_sym_yield] = ACTIONS(1274), + [aux_sym_include_expression_token1] = ACTIONS(1274), + [aux_sym_include_once_expression_token1] = ACTIONS(1274), + [aux_sym_require_expression_token1] = ACTIONS(1274), + [aux_sym_require_once_expression_token1] = ACTIONS(1274), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1267), + [sym_heredoc] = ACTIONS(1272), }, [507] = { [sym_text_interpolation] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1271), - [sym_name] = ACTIONS(1273), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1271), - [aux_sym_function_static_declaration_token1] = ACTIONS(1273), - [aux_sym_global_declaration_token1] = ACTIONS(1273), - [aux_sym_namespace_definition_token1] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1273), - [anon_sym_BSLASH] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [aux_sym_trait_declaration_token1] = ACTIONS(1273), - [aux_sym_interface_declaration_token1] = ACTIONS(1273), - [aux_sym_class_declaration_token1] = ACTIONS(1273), - [aux_sym_class_modifier_token1] = ACTIONS(1273), - [aux_sym_class_modifier_token2] = ACTIONS(1273), - [aux_sym_visibility_modifier_token1] = ACTIONS(1273), - [aux_sym_visibility_modifier_token2] = ACTIONS(1273), - [aux_sym_visibility_modifier_token3] = ACTIONS(1273), - [aux_sym_arrow_function_token1] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_array] = ACTIONS(1273), - [anon_sym_unset] = ACTIONS(1273), - [aux_sym_echo_statement_token1] = ACTIONS(1273), - [anon_sym_declare] = ACTIONS(1273), - [aux_sym_declare_statement_token1] = ACTIONS(1273), - [sym_float] = ACTIONS(1273), - [aux_sym_try_statement_token1] = ACTIONS(1273), - [aux_sym_goto_statement_token1] = ACTIONS(1273), - [aux_sym_continue_statement_token1] = ACTIONS(1273), - [aux_sym_break_statement_token1] = ACTIONS(1273), - [sym_integer] = ACTIONS(1273), - [aux_sym_return_statement_token1] = ACTIONS(1273), - [aux_sym_throw_expression_token1] = ACTIONS(1273), - [aux_sym_while_statement_token1] = ACTIONS(1273), - [aux_sym_while_statement_token2] = ACTIONS(1273), - [aux_sym_do_statement_token1] = ACTIONS(1273), - [aux_sym_for_statement_token1] = ACTIONS(1273), - [aux_sym_for_statement_token2] = ACTIONS(1273), - [aux_sym_foreach_statement_token1] = ACTIONS(1273), - [aux_sym_foreach_statement_token2] = ACTIONS(1273), - [aux_sym_if_statement_token1] = ACTIONS(1273), - [aux_sym_if_statement_token2] = ACTIONS(1273), - [aux_sym_else_if_clause_token1] = ACTIONS(1273), - [aux_sym_else_clause_token1] = ACTIONS(1273), - [aux_sym_match_expression_token1] = ACTIONS(1273), - [aux_sym_match_default_expression_token1] = ACTIONS(1273), - [aux_sym_switch_statement_token1] = ACTIONS(1273), - [aux_sym_switch_block_token1] = ACTIONS(1273), - [aux_sym_case_statement_token1] = ACTIONS(1273), - [anon_sym_AT] = ACTIONS(1271), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_clone] = ACTIONS(1273), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [sym_shell_command_expression] = ACTIONS(1271), - [anon_sym_list] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_self] = ACTIONS(1273), - [anon_sym_parent] = ACTIONS(1273), - [anon_sym_POUND_LBRACK] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [sym_boolean] = ACTIONS(1273), - [sym_null] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1271), - [anon_sym_yield] = ACTIONS(1273), - [aux_sym_include_expression_token1] = ACTIONS(1273), - [aux_sym_include_once_expression_token1] = ACTIONS(1273), - [aux_sym_require_expression_token1] = ACTIONS(1273), - [aux_sym_require_once_expression_token1] = ACTIONS(1273), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_name] = ACTIONS(1278), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1276), + [aux_sym_function_static_declaration_token1] = ACTIONS(1278), + [aux_sym_global_declaration_token1] = ACTIONS(1278), + [aux_sym_namespace_definition_token1] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1278), + [anon_sym_BSLASH] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [aux_sym_trait_declaration_token1] = ACTIONS(1278), + [aux_sym_interface_declaration_token1] = ACTIONS(1278), + [aux_sym_class_declaration_token1] = ACTIONS(1278), + [aux_sym_final_modifier_token1] = ACTIONS(1278), + [aux_sym_abstract_modifier_token1] = ACTIONS(1278), + [aux_sym_visibility_modifier_token1] = ACTIONS(1278), + [aux_sym_visibility_modifier_token2] = ACTIONS(1278), + [aux_sym_visibility_modifier_token3] = ACTIONS(1278), + [aux_sym_arrow_function_token1] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_array] = ACTIONS(1278), + [anon_sym_unset] = ACTIONS(1278), + [aux_sym_echo_statement_token1] = ACTIONS(1278), + [anon_sym_declare] = ACTIONS(1278), + [aux_sym_declare_statement_token1] = ACTIONS(1278), + [sym_float] = ACTIONS(1278), + [aux_sym_try_statement_token1] = ACTIONS(1278), + [aux_sym_goto_statement_token1] = ACTIONS(1278), + [aux_sym_continue_statement_token1] = ACTIONS(1278), + [aux_sym_break_statement_token1] = ACTIONS(1278), + [sym_integer] = ACTIONS(1278), + [aux_sym_return_statement_token1] = ACTIONS(1278), + [aux_sym_throw_expression_token1] = ACTIONS(1278), + [aux_sym_while_statement_token1] = ACTIONS(1278), + [aux_sym_while_statement_token2] = ACTIONS(1278), + [aux_sym_do_statement_token1] = ACTIONS(1278), + [aux_sym_for_statement_token1] = ACTIONS(1278), + [aux_sym_for_statement_token2] = ACTIONS(1278), + [aux_sym_foreach_statement_token1] = ACTIONS(1278), + [aux_sym_foreach_statement_token2] = ACTIONS(1278), + [aux_sym_if_statement_token1] = ACTIONS(1278), + [aux_sym_if_statement_token2] = ACTIONS(1278), + [aux_sym_else_if_clause_token1] = ACTIONS(1278), + [aux_sym_else_clause_token1] = ACTIONS(1278), + [aux_sym_match_expression_token1] = ACTIONS(1278), + [aux_sym_match_default_expression_token1] = ACTIONS(1278), + [aux_sym_switch_statement_token1] = ACTIONS(1278), + [aux_sym_switch_block_token1] = ACTIONS(1278), + [aux_sym_case_statement_token1] = ACTIONS(1278), + [anon_sym_AT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_clone] = ACTIONS(1278), + [anon_sym_print] = ACTIONS(1278), + [anon_sym_new] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [sym_shell_command_expression] = ACTIONS(1276), + [anon_sym_list] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_self] = ACTIONS(1278), + [anon_sym_parent] = ACTIONS(1278), + [anon_sym_POUND_LBRACK] = ACTIONS(1276), + [sym_string] = ACTIONS(1276), + [sym_boolean] = ACTIONS(1278), + [sym_null] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(1276), + [anon_sym_yield] = ACTIONS(1278), + [aux_sym_include_expression_token1] = ACTIONS(1278), + [aux_sym_include_once_expression_token1] = ACTIONS(1278), + [aux_sym_require_expression_token1] = ACTIONS(1278), + [aux_sym_require_once_expression_token1] = ACTIONS(1278), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1271), + [sym_heredoc] = ACTIONS(1276), }, [508] = { [sym_text_interpolation] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1271), - [sym_name] = ACTIONS(1273), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1271), - [aux_sym_function_static_declaration_token1] = ACTIONS(1273), - [aux_sym_global_declaration_token1] = ACTIONS(1273), - [aux_sym_namespace_definition_token1] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1273), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1273), - [anon_sym_BSLASH] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [aux_sym_trait_declaration_token1] = ACTIONS(1273), - [aux_sym_interface_declaration_token1] = ACTIONS(1273), - [aux_sym_class_declaration_token1] = ACTIONS(1273), - [aux_sym_class_modifier_token1] = ACTIONS(1273), - [aux_sym_class_modifier_token2] = ACTIONS(1273), - [aux_sym_visibility_modifier_token1] = ACTIONS(1273), - [aux_sym_visibility_modifier_token2] = ACTIONS(1273), - [aux_sym_visibility_modifier_token3] = ACTIONS(1273), - [aux_sym_arrow_function_token1] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_array] = ACTIONS(1273), - [anon_sym_unset] = ACTIONS(1273), - [aux_sym_echo_statement_token1] = ACTIONS(1273), - [anon_sym_declare] = ACTIONS(1273), - [aux_sym_declare_statement_token1] = ACTIONS(1273), - [sym_float] = ACTIONS(1273), - [aux_sym_try_statement_token1] = ACTIONS(1273), - [aux_sym_goto_statement_token1] = ACTIONS(1273), - [aux_sym_continue_statement_token1] = ACTIONS(1273), - [aux_sym_break_statement_token1] = ACTIONS(1273), - [sym_integer] = ACTIONS(1273), - [aux_sym_return_statement_token1] = ACTIONS(1273), - [aux_sym_throw_expression_token1] = ACTIONS(1273), - [aux_sym_while_statement_token1] = ACTIONS(1273), - [aux_sym_while_statement_token2] = ACTIONS(1273), - [aux_sym_do_statement_token1] = ACTIONS(1273), - [aux_sym_for_statement_token1] = ACTIONS(1273), - [aux_sym_for_statement_token2] = ACTIONS(1273), - [aux_sym_foreach_statement_token1] = ACTIONS(1273), - [aux_sym_foreach_statement_token2] = ACTIONS(1273), - [aux_sym_if_statement_token1] = ACTIONS(1273), - [aux_sym_if_statement_token2] = ACTIONS(1273), - [aux_sym_else_if_clause_token1] = ACTIONS(1273), - [aux_sym_else_clause_token1] = ACTIONS(1273), - [aux_sym_match_expression_token1] = ACTIONS(1273), - [aux_sym_match_default_expression_token1] = ACTIONS(1273), - [aux_sym_switch_statement_token1] = ACTIONS(1273), - [aux_sym_switch_block_token1] = ACTIONS(1273), - [aux_sym_case_statement_token1] = ACTIONS(1273), - [anon_sym_AT] = ACTIONS(1271), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_clone] = ACTIONS(1273), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [sym_shell_command_expression] = ACTIONS(1271), - [anon_sym_list] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_self] = ACTIONS(1273), - [anon_sym_parent] = ACTIONS(1273), - [anon_sym_POUND_LBRACK] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [sym_boolean] = ACTIONS(1273), - [sym_null] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1271), - [anon_sym_yield] = ACTIONS(1273), - [aux_sym_include_expression_token1] = ACTIONS(1273), - [aux_sym_include_once_expression_token1] = ACTIONS(1273), - [aux_sym_require_expression_token1] = ACTIONS(1273), - [aux_sym_require_once_expression_token1] = ACTIONS(1273), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_name] = ACTIONS(1278), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1276), + [aux_sym_function_static_declaration_token1] = ACTIONS(1278), + [aux_sym_global_declaration_token1] = ACTIONS(1278), + [aux_sym_namespace_definition_token1] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1278), + [anon_sym_BSLASH] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [aux_sym_trait_declaration_token1] = ACTIONS(1278), + [aux_sym_interface_declaration_token1] = ACTIONS(1278), + [aux_sym_class_declaration_token1] = ACTIONS(1278), + [aux_sym_final_modifier_token1] = ACTIONS(1278), + [aux_sym_abstract_modifier_token1] = ACTIONS(1278), + [aux_sym_visibility_modifier_token1] = ACTIONS(1278), + [aux_sym_visibility_modifier_token2] = ACTIONS(1278), + [aux_sym_visibility_modifier_token3] = ACTIONS(1278), + [aux_sym_arrow_function_token1] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_array] = ACTIONS(1278), + [anon_sym_unset] = ACTIONS(1278), + [aux_sym_echo_statement_token1] = ACTIONS(1278), + [anon_sym_declare] = ACTIONS(1278), + [aux_sym_declare_statement_token1] = ACTIONS(1278), + [sym_float] = ACTIONS(1278), + [aux_sym_try_statement_token1] = ACTIONS(1278), + [aux_sym_goto_statement_token1] = ACTIONS(1278), + [aux_sym_continue_statement_token1] = ACTIONS(1278), + [aux_sym_break_statement_token1] = ACTIONS(1278), + [sym_integer] = ACTIONS(1278), + [aux_sym_return_statement_token1] = ACTIONS(1278), + [aux_sym_throw_expression_token1] = ACTIONS(1278), + [aux_sym_while_statement_token1] = ACTIONS(1278), + [aux_sym_while_statement_token2] = ACTIONS(1278), + [aux_sym_do_statement_token1] = ACTIONS(1278), + [aux_sym_for_statement_token1] = ACTIONS(1278), + [aux_sym_for_statement_token2] = ACTIONS(1278), + [aux_sym_foreach_statement_token1] = ACTIONS(1278), + [aux_sym_foreach_statement_token2] = ACTIONS(1278), + [aux_sym_if_statement_token1] = ACTIONS(1278), + [aux_sym_if_statement_token2] = ACTIONS(1278), + [aux_sym_else_if_clause_token1] = ACTIONS(1278), + [aux_sym_else_clause_token1] = ACTIONS(1278), + [aux_sym_match_expression_token1] = ACTIONS(1278), + [aux_sym_match_default_expression_token1] = ACTIONS(1278), + [aux_sym_switch_statement_token1] = ACTIONS(1278), + [aux_sym_switch_block_token1] = ACTIONS(1278), + [aux_sym_case_statement_token1] = ACTIONS(1278), + [anon_sym_AT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_clone] = ACTIONS(1278), + [anon_sym_print] = ACTIONS(1278), + [anon_sym_new] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [sym_shell_command_expression] = ACTIONS(1276), + [anon_sym_list] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_self] = ACTIONS(1278), + [anon_sym_parent] = ACTIONS(1278), + [anon_sym_POUND_LBRACK] = ACTIONS(1276), + [sym_string] = ACTIONS(1276), + [sym_boolean] = ACTIONS(1278), + [sym_null] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(1276), + [anon_sym_yield] = ACTIONS(1278), + [aux_sym_include_expression_token1] = ACTIONS(1278), + [aux_sym_include_once_expression_token1] = ACTIONS(1278), + [aux_sym_require_expression_token1] = ACTIONS(1278), + [aux_sym_require_once_expression_token1] = ACTIONS(1278), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1271), + [sym_heredoc] = ACTIONS(1276), }, [509] = { [sym_text_interpolation] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_name] = ACTIONS(1277), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1275), - [aux_sym_function_static_declaration_token1] = ACTIONS(1277), - [aux_sym_global_declaration_token1] = ACTIONS(1277), - [aux_sym_namespace_definition_token1] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1277), - [anon_sym_BSLASH] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [aux_sym_trait_declaration_token1] = ACTIONS(1277), - [aux_sym_interface_declaration_token1] = ACTIONS(1277), - [aux_sym_class_declaration_token1] = ACTIONS(1277), - [aux_sym_class_modifier_token1] = ACTIONS(1277), - [aux_sym_class_modifier_token2] = ACTIONS(1277), - [aux_sym_visibility_modifier_token1] = ACTIONS(1277), - [aux_sym_visibility_modifier_token2] = ACTIONS(1277), - [aux_sym_visibility_modifier_token3] = ACTIONS(1277), - [aux_sym_arrow_function_token1] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_array] = ACTIONS(1277), - [anon_sym_unset] = ACTIONS(1277), - [aux_sym_echo_statement_token1] = ACTIONS(1277), - [anon_sym_declare] = ACTIONS(1277), - [aux_sym_declare_statement_token1] = ACTIONS(1277), - [sym_float] = ACTIONS(1277), - [aux_sym_try_statement_token1] = ACTIONS(1277), - [aux_sym_goto_statement_token1] = ACTIONS(1277), - [aux_sym_continue_statement_token1] = ACTIONS(1277), - [aux_sym_break_statement_token1] = ACTIONS(1277), - [sym_integer] = ACTIONS(1277), - [aux_sym_return_statement_token1] = ACTIONS(1277), - [aux_sym_throw_expression_token1] = ACTIONS(1277), - [aux_sym_while_statement_token1] = ACTIONS(1277), - [aux_sym_while_statement_token2] = ACTIONS(1277), - [aux_sym_do_statement_token1] = ACTIONS(1277), - [aux_sym_for_statement_token1] = ACTIONS(1277), - [aux_sym_for_statement_token2] = ACTIONS(1277), - [aux_sym_foreach_statement_token1] = ACTIONS(1277), - [aux_sym_foreach_statement_token2] = ACTIONS(1277), - [aux_sym_if_statement_token1] = ACTIONS(1277), - [aux_sym_if_statement_token2] = ACTIONS(1277), - [aux_sym_else_if_clause_token1] = ACTIONS(1277), - [aux_sym_else_clause_token1] = ACTIONS(1277), - [aux_sym_match_expression_token1] = ACTIONS(1277), - [aux_sym_match_default_expression_token1] = ACTIONS(1277), - [aux_sym_switch_statement_token1] = ACTIONS(1277), - [aux_sym_switch_block_token1] = ACTIONS(1277), - [aux_sym_case_statement_token1] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_clone] = ACTIONS(1277), - [anon_sym_print] = ACTIONS(1277), - [anon_sym_new] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [sym_shell_command_expression] = ACTIONS(1275), - [anon_sym_list] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_self] = ACTIONS(1277), - [anon_sym_parent] = ACTIONS(1277), - [anon_sym_POUND_LBRACK] = ACTIONS(1275), - [sym_string] = ACTIONS(1275), - [sym_boolean] = ACTIONS(1277), - [sym_null] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(1275), - [anon_sym_yield] = ACTIONS(1277), - [aux_sym_include_expression_token1] = ACTIONS(1277), - [aux_sym_include_once_expression_token1] = ACTIONS(1277), - [aux_sym_require_expression_token1] = ACTIONS(1277), - [aux_sym_require_once_expression_token1] = ACTIONS(1277), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_name] = ACTIONS(1282), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1280), + [aux_sym_function_static_declaration_token1] = ACTIONS(1282), + [aux_sym_global_declaration_token1] = ACTIONS(1282), + [aux_sym_namespace_definition_token1] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1282), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [aux_sym_trait_declaration_token1] = ACTIONS(1282), + [aux_sym_interface_declaration_token1] = ACTIONS(1282), + [aux_sym_class_declaration_token1] = ACTIONS(1282), + [aux_sym_final_modifier_token1] = ACTIONS(1282), + [aux_sym_abstract_modifier_token1] = ACTIONS(1282), + [aux_sym_visibility_modifier_token1] = ACTIONS(1282), + [aux_sym_visibility_modifier_token2] = ACTIONS(1282), + [aux_sym_visibility_modifier_token3] = ACTIONS(1282), + [aux_sym_arrow_function_token1] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_array] = ACTIONS(1282), + [anon_sym_unset] = ACTIONS(1282), + [aux_sym_echo_statement_token1] = ACTIONS(1282), + [anon_sym_declare] = ACTIONS(1282), + [aux_sym_declare_statement_token1] = ACTIONS(1282), + [sym_float] = ACTIONS(1282), + [aux_sym_try_statement_token1] = ACTIONS(1282), + [aux_sym_goto_statement_token1] = ACTIONS(1282), + [aux_sym_continue_statement_token1] = ACTIONS(1282), + [aux_sym_break_statement_token1] = ACTIONS(1282), + [sym_integer] = ACTIONS(1282), + [aux_sym_return_statement_token1] = ACTIONS(1282), + [aux_sym_throw_expression_token1] = ACTIONS(1282), + [aux_sym_while_statement_token1] = ACTIONS(1282), + [aux_sym_while_statement_token2] = ACTIONS(1282), + [aux_sym_do_statement_token1] = ACTIONS(1282), + [aux_sym_for_statement_token1] = ACTIONS(1282), + [aux_sym_for_statement_token2] = ACTIONS(1282), + [aux_sym_foreach_statement_token1] = ACTIONS(1282), + [aux_sym_foreach_statement_token2] = ACTIONS(1282), + [aux_sym_if_statement_token1] = ACTIONS(1282), + [aux_sym_if_statement_token2] = ACTIONS(1282), + [aux_sym_else_if_clause_token1] = ACTIONS(1282), + [aux_sym_else_clause_token1] = ACTIONS(1282), + [aux_sym_match_expression_token1] = ACTIONS(1282), + [aux_sym_match_default_expression_token1] = ACTIONS(1282), + [aux_sym_switch_statement_token1] = ACTIONS(1282), + [aux_sym_switch_block_token1] = ACTIONS(1282), + [aux_sym_case_statement_token1] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_clone] = ACTIONS(1282), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [sym_shell_command_expression] = ACTIONS(1280), + [anon_sym_list] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_self] = ACTIONS(1282), + [anon_sym_parent] = ACTIONS(1282), + [anon_sym_POUND_LBRACK] = ACTIONS(1280), + [sym_string] = ACTIONS(1280), + [sym_boolean] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1280), + [anon_sym_yield] = ACTIONS(1282), + [aux_sym_include_expression_token1] = ACTIONS(1282), + [aux_sym_include_once_expression_token1] = ACTIONS(1282), + [aux_sym_require_expression_token1] = ACTIONS(1282), + [aux_sym_require_once_expression_token1] = ACTIONS(1282), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1275), + [sym_heredoc] = ACTIONS(1280), }, [510] = { [sym_text_interpolation] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_name] = ACTIONS(1277), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1275), - [aux_sym_function_static_declaration_token1] = ACTIONS(1277), - [aux_sym_global_declaration_token1] = ACTIONS(1277), - [aux_sym_namespace_definition_token1] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1277), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1277), - [anon_sym_BSLASH] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [aux_sym_trait_declaration_token1] = ACTIONS(1277), - [aux_sym_interface_declaration_token1] = ACTIONS(1277), - [aux_sym_class_declaration_token1] = ACTIONS(1277), - [aux_sym_class_modifier_token1] = ACTIONS(1277), - [aux_sym_class_modifier_token2] = ACTIONS(1277), - [aux_sym_visibility_modifier_token1] = ACTIONS(1277), - [aux_sym_visibility_modifier_token2] = ACTIONS(1277), - [aux_sym_visibility_modifier_token3] = ACTIONS(1277), - [aux_sym_arrow_function_token1] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_array] = ACTIONS(1277), - [anon_sym_unset] = ACTIONS(1277), - [aux_sym_echo_statement_token1] = ACTIONS(1277), - [anon_sym_declare] = ACTIONS(1277), - [aux_sym_declare_statement_token1] = ACTIONS(1277), - [sym_float] = ACTIONS(1277), - [aux_sym_try_statement_token1] = ACTIONS(1277), - [aux_sym_goto_statement_token1] = ACTIONS(1277), - [aux_sym_continue_statement_token1] = ACTIONS(1277), - [aux_sym_break_statement_token1] = ACTIONS(1277), - [sym_integer] = ACTIONS(1277), - [aux_sym_return_statement_token1] = ACTIONS(1277), - [aux_sym_throw_expression_token1] = ACTIONS(1277), - [aux_sym_while_statement_token1] = ACTIONS(1277), - [aux_sym_while_statement_token2] = ACTIONS(1277), - [aux_sym_do_statement_token1] = ACTIONS(1277), - [aux_sym_for_statement_token1] = ACTIONS(1277), - [aux_sym_for_statement_token2] = ACTIONS(1277), - [aux_sym_foreach_statement_token1] = ACTIONS(1277), - [aux_sym_foreach_statement_token2] = ACTIONS(1277), - [aux_sym_if_statement_token1] = ACTIONS(1277), - [aux_sym_if_statement_token2] = ACTIONS(1277), - [aux_sym_else_if_clause_token1] = ACTIONS(1277), - [aux_sym_else_clause_token1] = ACTIONS(1277), - [aux_sym_match_expression_token1] = ACTIONS(1277), - [aux_sym_match_default_expression_token1] = ACTIONS(1277), - [aux_sym_switch_statement_token1] = ACTIONS(1277), - [aux_sym_switch_block_token1] = ACTIONS(1277), - [aux_sym_case_statement_token1] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_clone] = ACTIONS(1277), - [anon_sym_print] = ACTIONS(1277), - [anon_sym_new] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [sym_shell_command_expression] = ACTIONS(1275), - [anon_sym_list] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_self] = ACTIONS(1277), - [anon_sym_parent] = ACTIONS(1277), - [anon_sym_POUND_LBRACK] = ACTIONS(1275), - [sym_string] = ACTIONS(1275), - [sym_boolean] = ACTIONS(1277), - [sym_null] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(1275), - [anon_sym_yield] = ACTIONS(1277), - [aux_sym_include_expression_token1] = ACTIONS(1277), - [aux_sym_include_once_expression_token1] = ACTIONS(1277), - [aux_sym_require_expression_token1] = ACTIONS(1277), - [aux_sym_require_once_expression_token1] = ACTIONS(1277), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_name] = ACTIONS(1282), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1280), + [aux_sym_function_static_declaration_token1] = ACTIONS(1282), + [aux_sym_global_declaration_token1] = ACTIONS(1282), + [aux_sym_namespace_definition_token1] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1282), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [aux_sym_trait_declaration_token1] = ACTIONS(1282), + [aux_sym_interface_declaration_token1] = ACTIONS(1282), + [aux_sym_class_declaration_token1] = ACTIONS(1282), + [aux_sym_final_modifier_token1] = ACTIONS(1282), + [aux_sym_abstract_modifier_token1] = ACTIONS(1282), + [aux_sym_visibility_modifier_token1] = ACTIONS(1282), + [aux_sym_visibility_modifier_token2] = ACTIONS(1282), + [aux_sym_visibility_modifier_token3] = ACTIONS(1282), + [aux_sym_arrow_function_token1] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_array] = ACTIONS(1282), + [anon_sym_unset] = ACTIONS(1282), + [aux_sym_echo_statement_token1] = ACTIONS(1282), + [anon_sym_declare] = ACTIONS(1282), + [aux_sym_declare_statement_token1] = ACTIONS(1282), + [sym_float] = ACTIONS(1282), + [aux_sym_try_statement_token1] = ACTIONS(1282), + [aux_sym_goto_statement_token1] = ACTIONS(1282), + [aux_sym_continue_statement_token1] = ACTIONS(1282), + [aux_sym_break_statement_token1] = ACTIONS(1282), + [sym_integer] = ACTIONS(1282), + [aux_sym_return_statement_token1] = ACTIONS(1282), + [aux_sym_throw_expression_token1] = ACTIONS(1282), + [aux_sym_while_statement_token1] = ACTIONS(1282), + [aux_sym_while_statement_token2] = ACTIONS(1282), + [aux_sym_do_statement_token1] = ACTIONS(1282), + [aux_sym_for_statement_token1] = ACTIONS(1282), + [aux_sym_for_statement_token2] = ACTIONS(1282), + [aux_sym_foreach_statement_token1] = ACTIONS(1282), + [aux_sym_foreach_statement_token2] = ACTIONS(1282), + [aux_sym_if_statement_token1] = ACTIONS(1282), + [aux_sym_if_statement_token2] = ACTIONS(1282), + [aux_sym_else_if_clause_token1] = ACTIONS(1282), + [aux_sym_else_clause_token1] = ACTIONS(1282), + [aux_sym_match_expression_token1] = ACTIONS(1282), + [aux_sym_match_default_expression_token1] = ACTIONS(1282), + [aux_sym_switch_statement_token1] = ACTIONS(1282), + [aux_sym_switch_block_token1] = ACTIONS(1282), + [aux_sym_case_statement_token1] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_clone] = ACTIONS(1282), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [sym_shell_command_expression] = ACTIONS(1280), + [anon_sym_list] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_self] = ACTIONS(1282), + [anon_sym_parent] = ACTIONS(1282), + [anon_sym_POUND_LBRACK] = ACTIONS(1280), + [sym_string] = ACTIONS(1280), + [sym_boolean] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1280), + [anon_sym_yield] = ACTIONS(1282), + [aux_sym_include_expression_token1] = ACTIONS(1282), + [aux_sym_include_once_expression_token1] = ACTIONS(1282), + [aux_sym_require_expression_token1] = ACTIONS(1282), + [aux_sym_require_once_expression_token1] = ACTIONS(1282), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1275), + [sym_heredoc] = ACTIONS(1280), }, [511] = { [sym_text_interpolation] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_name] = ACTIONS(1281), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1279), - [aux_sym_function_static_declaration_token1] = ACTIONS(1281), - [aux_sym_global_declaration_token1] = ACTIONS(1281), - [aux_sym_namespace_definition_token1] = ACTIONS(1281), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1281), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1281), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1281), - [anon_sym_BSLASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [aux_sym_trait_declaration_token1] = ACTIONS(1281), - [aux_sym_interface_declaration_token1] = ACTIONS(1281), - [aux_sym_class_declaration_token1] = ACTIONS(1281), - [aux_sym_class_modifier_token1] = ACTIONS(1281), - [aux_sym_class_modifier_token2] = ACTIONS(1281), - [aux_sym_visibility_modifier_token1] = ACTIONS(1281), - [aux_sym_visibility_modifier_token2] = ACTIONS(1281), - [aux_sym_visibility_modifier_token3] = ACTIONS(1281), - [aux_sym_arrow_function_token1] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(1281), - [anon_sym_unset] = ACTIONS(1281), - [aux_sym_echo_statement_token1] = ACTIONS(1281), - [anon_sym_declare] = ACTIONS(1281), - [aux_sym_declare_statement_token1] = ACTIONS(1281), - [sym_float] = ACTIONS(1281), - [aux_sym_try_statement_token1] = ACTIONS(1281), - [aux_sym_goto_statement_token1] = ACTIONS(1281), - [aux_sym_continue_statement_token1] = ACTIONS(1281), - [aux_sym_break_statement_token1] = ACTIONS(1281), - [sym_integer] = ACTIONS(1281), - [aux_sym_return_statement_token1] = ACTIONS(1281), - [aux_sym_throw_expression_token1] = ACTIONS(1281), - [aux_sym_while_statement_token1] = ACTIONS(1281), - [aux_sym_while_statement_token2] = ACTIONS(1281), - [aux_sym_do_statement_token1] = ACTIONS(1281), - [aux_sym_for_statement_token1] = ACTIONS(1281), - [aux_sym_for_statement_token2] = ACTIONS(1281), - [aux_sym_foreach_statement_token1] = ACTIONS(1281), - [aux_sym_foreach_statement_token2] = ACTIONS(1281), - [aux_sym_if_statement_token1] = ACTIONS(1281), - [aux_sym_if_statement_token2] = ACTIONS(1281), - [aux_sym_else_if_clause_token1] = ACTIONS(1281), - [aux_sym_else_clause_token1] = ACTIONS(1281), - [aux_sym_match_expression_token1] = ACTIONS(1281), - [aux_sym_match_default_expression_token1] = ACTIONS(1281), - [aux_sym_switch_statement_token1] = ACTIONS(1281), - [aux_sym_switch_block_token1] = ACTIONS(1281), - [aux_sym_case_statement_token1] = ACTIONS(1281), - [anon_sym_AT] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_clone] = ACTIONS(1281), - [anon_sym_print] = ACTIONS(1281), - [anon_sym_new] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [sym_shell_command_expression] = ACTIONS(1279), - [anon_sym_list] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_self] = ACTIONS(1281), - [anon_sym_parent] = ACTIONS(1281), - [anon_sym_POUND_LBRACK] = ACTIONS(1279), - [sym_string] = ACTIONS(1279), - [sym_boolean] = ACTIONS(1281), - [sym_null] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1281), - [aux_sym_include_expression_token1] = ACTIONS(1281), - [aux_sym_include_once_expression_token1] = ACTIONS(1281), - [aux_sym_require_expression_token1] = ACTIONS(1281), - [aux_sym_require_once_expression_token1] = ACTIONS(1281), + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_name] = ACTIONS(1286), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1284), + [aux_sym_function_static_declaration_token1] = ACTIONS(1286), + [aux_sym_global_declaration_token1] = ACTIONS(1286), + [aux_sym_namespace_definition_token1] = ACTIONS(1286), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1286), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1286), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [aux_sym_trait_declaration_token1] = ACTIONS(1286), + [aux_sym_interface_declaration_token1] = ACTIONS(1286), + [aux_sym_class_declaration_token1] = ACTIONS(1286), + [aux_sym_final_modifier_token1] = ACTIONS(1286), + [aux_sym_abstract_modifier_token1] = ACTIONS(1286), + [aux_sym_visibility_modifier_token1] = ACTIONS(1286), + [aux_sym_visibility_modifier_token2] = ACTIONS(1286), + [aux_sym_visibility_modifier_token3] = ACTIONS(1286), + [aux_sym_arrow_function_token1] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_array] = ACTIONS(1286), + [anon_sym_unset] = ACTIONS(1286), + [aux_sym_echo_statement_token1] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [aux_sym_declare_statement_token1] = ACTIONS(1286), + [sym_float] = ACTIONS(1286), + [aux_sym_try_statement_token1] = ACTIONS(1286), + [aux_sym_goto_statement_token1] = ACTIONS(1286), + [aux_sym_continue_statement_token1] = ACTIONS(1286), + [aux_sym_break_statement_token1] = ACTIONS(1286), + [sym_integer] = ACTIONS(1286), + [aux_sym_return_statement_token1] = ACTIONS(1286), + [aux_sym_throw_expression_token1] = ACTIONS(1286), + [aux_sym_while_statement_token1] = ACTIONS(1286), + [aux_sym_while_statement_token2] = ACTIONS(1286), + [aux_sym_do_statement_token1] = ACTIONS(1286), + [aux_sym_for_statement_token1] = ACTIONS(1286), + [aux_sym_for_statement_token2] = ACTIONS(1286), + [aux_sym_foreach_statement_token1] = ACTIONS(1286), + [aux_sym_foreach_statement_token2] = ACTIONS(1286), + [aux_sym_if_statement_token1] = ACTIONS(1286), + [aux_sym_if_statement_token2] = ACTIONS(1286), + [aux_sym_else_if_clause_token1] = ACTIONS(1286), + [aux_sym_else_clause_token1] = ACTIONS(1286), + [aux_sym_match_expression_token1] = ACTIONS(1286), + [aux_sym_match_default_expression_token1] = ACTIONS(1286), + [aux_sym_switch_statement_token1] = ACTIONS(1286), + [aux_sym_switch_block_token1] = ACTIONS(1286), + [aux_sym_case_statement_token1] = ACTIONS(1286), + [anon_sym_AT] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_clone] = ACTIONS(1286), + [anon_sym_print] = ACTIONS(1286), + [anon_sym_new] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [sym_shell_command_expression] = ACTIONS(1284), + [anon_sym_list] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_self] = ACTIONS(1286), + [anon_sym_parent] = ACTIONS(1286), + [anon_sym_POUND_LBRACK] = ACTIONS(1284), + [sym_string] = ACTIONS(1284), + [sym_boolean] = ACTIONS(1286), + [sym_null] = ACTIONS(1286), + [anon_sym_DOLLAR] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1286), + [aux_sym_include_expression_token1] = ACTIONS(1286), + [aux_sym_include_once_expression_token1] = ACTIONS(1286), + [aux_sym_require_expression_token1] = ACTIONS(1286), + [aux_sym_require_once_expression_token1] = ACTIONS(1286), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1279), + [sym_heredoc] = ACTIONS(1284), }, [512] = { [sym_text_interpolation] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_name] = ACTIONS(1285), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1283), - [aux_sym_function_static_declaration_token1] = ACTIONS(1285), - [aux_sym_global_declaration_token1] = ACTIONS(1285), - [aux_sym_namespace_definition_token1] = ACTIONS(1285), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1285), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1285), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1285), - [anon_sym_BSLASH] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [aux_sym_trait_declaration_token1] = ACTIONS(1285), - [aux_sym_interface_declaration_token1] = ACTIONS(1285), - [aux_sym_class_declaration_token1] = ACTIONS(1285), - [aux_sym_class_modifier_token1] = ACTIONS(1285), - [aux_sym_class_modifier_token2] = ACTIONS(1285), - [aux_sym_visibility_modifier_token1] = ACTIONS(1285), - [aux_sym_visibility_modifier_token2] = ACTIONS(1285), - [aux_sym_visibility_modifier_token3] = ACTIONS(1285), - [aux_sym_arrow_function_token1] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_array] = ACTIONS(1285), - [anon_sym_unset] = ACTIONS(1285), - [aux_sym_echo_statement_token1] = ACTIONS(1285), - [anon_sym_declare] = ACTIONS(1285), - [aux_sym_declare_statement_token1] = ACTIONS(1285), - [sym_float] = ACTIONS(1285), - [aux_sym_try_statement_token1] = ACTIONS(1285), - [aux_sym_goto_statement_token1] = ACTIONS(1285), - [aux_sym_continue_statement_token1] = ACTIONS(1285), - [aux_sym_break_statement_token1] = ACTIONS(1285), - [sym_integer] = ACTIONS(1285), - [aux_sym_return_statement_token1] = ACTIONS(1285), - [aux_sym_throw_expression_token1] = ACTIONS(1285), - [aux_sym_while_statement_token1] = ACTIONS(1285), - [aux_sym_while_statement_token2] = ACTIONS(1285), - [aux_sym_do_statement_token1] = ACTIONS(1285), - [aux_sym_for_statement_token1] = ACTIONS(1285), - [aux_sym_for_statement_token2] = ACTIONS(1285), - [aux_sym_foreach_statement_token1] = ACTIONS(1285), - [aux_sym_foreach_statement_token2] = ACTIONS(1285), - [aux_sym_if_statement_token1] = ACTIONS(1285), - [aux_sym_if_statement_token2] = ACTIONS(1285), - [aux_sym_else_if_clause_token1] = ACTIONS(1285), - [aux_sym_else_clause_token1] = ACTIONS(1285), - [aux_sym_match_expression_token1] = ACTIONS(1285), - [aux_sym_match_default_expression_token1] = ACTIONS(1285), - [aux_sym_switch_statement_token1] = ACTIONS(1285), - [aux_sym_switch_block_token1] = ACTIONS(1285), - [aux_sym_case_statement_token1] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_clone] = ACTIONS(1285), - [anon_sym_print] = ACTIONS(1285), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [sym_shell_command_expression] = ACTIONS(1283), - [anon_sym_list] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_self] = ACTIONS(1285), - [anon_sym_parent] = ACTIONS(1285), - [anon_sym_POUND_LBRACK] = ACTIONS(1283), - [sym_string] = ACTIONS(1283), - [sym_boolean] = ACTIONS(1285), - [sym_null] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1283), - [anon_sym_yield] = ACTIONS(1285), - [aux_sym_include_expression_token1] = ACTIONS(1285), - [aux_sym_include_once_expression_token1] = ACTIONS(1285), - [aux_sym_require_expression_token1] = ACTIONS(1285), - [aux_sym_require_once_expression_token1] = ACTIONS(1285), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_name] = ACTIONS(1290), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1288), + [aux_sym_function_static_declaration_token1] = ACTIONS(1290), + [aux_sym_global_declaration_token1] = ACTIONS(1290), + [aux_sym_namespace_definition_token1] = ACTIONS(1290), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1290), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1290), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1290), + [anon_sym_BSLASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [aux_sym_trait_declaration_token1] = ACTIONS(1290), + [aux_sym_interface_declaration_token1] = ACTIONS(1290), + [aux_sym_class_declaration_token1] = ACTIONS(1290), + [aux_sym_final_modifier_token1] = ACTIONS(1290), + [aux_sym_abstract_modifier_token1] = ACTIONS(1290), + [aux_sym_visibility_modifier_token1] = ACTIONS(1290), + [aux_sym_visibility_modifier_token2] = ACTIONS(1290), + [aux_sym_visibility_modifier_token3] = ACTIONS(1290), + [aux_sym_arrow_function_token1] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_array] = ACTIONS(1290), + [anon_sym_unset] = ACTIONS(1290), + [aux_sym_echo_statement_token1] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [aux_sym_declare_statement_token1] = ACTIONS(1290), + [sym_float] = ACTIONS(1290), + [aux_sym_try_statement_token1] = ACTIONS(1290), + [aux_sym_goto_statement_token1] = ACTIONS(1290), + [aux_sym_continue_statement_token1] = ACTIONS(1290), + [aux_sym_break_statement_token1] = ACTIONS(1290), + [sym_integer] = ACTIONS(1290), + [aux_sym_return_statement_token1] = ACTIONS(1290), + [aux_sym_throw_expression_token1] = ACTIONS(1290), + [aux_sym_while_statement_token1] = ACTIONS(1290), + [aux_sym_while_statement_token2] = ACTIONS(1290), + [aux_sym_do_statement_token1] = ACTIONS(1290), + [aux_sym_for_statement_token1] = ACTIONS(1290), + [aux_sym_for_statement_token2] = ACTIONS(1290), + [aux_sym_foreach_statement_token1] = ACTIONS(1290), + [aux_sym_foreach_statement_token2] = ACTIONS(1290), + [aux_sym_if_statement_token1] = ACTIONS(1290), + [aux_sym_if_statement_token2] = ACTIONS(1290), + [aux_sym_else_if_clause_token1] = ACTIONS(1290), + [aux_sym_else_clause_token1] = ACTIONS(1290), + [aux_sym_match_expression_token1] = ACTIONS(1290), + [aux_sym_match_default_expression_token1] = ACTIONS(1290), + [aux_sym_switch_statement_token1] = ACTIONS(1290), + [aux_sym_switch_block_token1] = ACTIONS(1290), + [aux_sym_case_statement_token1] = ACTIONS(1290), + [anon_sym_AT] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_clone] = ACTIONS(1290), + [anon_sym_print] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [sym_shell_command_expression] = ACTIONS(1288), + [anon_sym_list] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_self] = ACTIONS(1290), + [anon_sym_parent] = ACTIONS(1290), + [anon_sym_POUND_LBRACK] = ACTIONS(1288), + [sym_string] = ACTIONS(1288), + [sym_boolean] = ACTIONS(1290), + [sym_null] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_yield] = ACTIONS(1290), + [aux_sym_include_expression_token1] = ACTIONS(1290), + [aux_sym_include_once_expression_token1] = ACTIONS(1290), + [aux_sym_require_expression_token1] = ACTIONS(1290), + [aux_sym_require_once_expression_token1] = ACTIONS(1290), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1283), + [sym_heredoc] = ACTIONS(1288), }, [513] = { [sym_text_interpolation] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_name] = ACTIONS(1289), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1287), - [aux_sym_function_static_declaration_token1] = ACTIONS(1289), - [aux_sym_global_declaration_token1] = ACTIONS(1289), - [aux_sym_namespace_definition_token1] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1289), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [aux_sym_trait_declaration_token1] = ACTIONS(1289), - [aux_sym_interface_declaration_token1] = ACTIONS(1289), - [aux_sym_class_declaration_token1] = ACTIONS(1289), - [aux_sym_class_modifier_token1] = ACTIONS(1289), - [aux_sym_class_modifier_token2] = ACTIONS(1289), - [aux_sym_visibility_modifier_token1] = ACTIONS(1289), - [aux_sym_visibility_modifier_token2] = ACTIONS(1289), - [aux_sym_visibility_modifier_token3] = ACTIONS(1289), - [aux_sym_arrow_function_token1] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1287), - [anon_sym_array] = ACTIONS(1289), - [anon_sym_unset] = ACTIONS(1289), - [aux_sym_echo_statement_token1] = ACTIONS(1289), - [anon_sym_declare] = ACTIONS(1289), - [aux_sym_declare_statement_token1] = ACTIONS(1289), - [sym_float] = ACTIONS(1289), - [aux_sym_try_statement_token1] = ACTIONS(1289), - [aux_sym_goto_statement_token1] = ACTIONS(1289), - [aux_sym_continue_statement_token1] = ACTIONS(1289), - [aux_sym_break_statement_token1] = ACTIONS(1289), - [sym_integer] = ACTIONS(1289), - [aux_sym_return_statement_token1] = ACTIONS(1289), - [aux_sym_throw_expression_token1] = ACTIONS(1289), - [aux_sym_while_statement_token1] = ACTIONS(1289), - [aux_sym_while_statement_token2] = ACTIONS(1289), - [aux_sym_do_statement_token1] = ACTIONS(1289), - [aux_sym_for_statement_token1] = ACTIONS(1289), - [aux_sym_for_statement_token2] = ACTIONS(1289), - [aux_sym_foreach_statement_token1] = ACTIONS(1289), - [aux_sym_foreach_statement_token2] = ACTIONS(1289), - [aux_sym_if_statement_token1] = ACTIONS(1289), - [aux_sym_if_statement_token2] = ACTIONS(1289), - [aux_sym_else_if_clause_token1] = ACTIONS(1289), - [aux_sym_else_clause_token1] = ACTIONS(1289), - [aux_sym_match_expression_token1] = ACTIONS(1289), - [aux_sym_match_default_expression_token1] = ACTIONS(1289), - [aux_sym_switch_statement_token1] = ACTIONS(1289), - [aux_sym_switch_block_token1] = ACTIONS(1289), - [aux_sym_case_statement_token1] = ACTIONS(1289), - [anon_sym_AT] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_clone] = ACTIONS(1289), - [anon_sym_print] = ACTIONS(1289), - [anon_sym_new] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [sym_shell_command_expression] = ACTIONS(1287), - [anon_sym_list] = ACTIONS(1289), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_self] = ACTIONS(1289), - [anon_sym_parent] = ACTIONS(1289), - [anon_sym_POUND_LBRACK] = ACTIONS(1287), - [sym_string] = ACTIONS(1287), - [sym_boolean] = ACTIONS(1289), - [sym_null] = ACTIONS(1289), - [anon_sym_DOLLAR] = ACTIONS(1287), - [anon_sym_yield] = ACTIONS(1289), - [aux_sym_include_expression_token1] = ACTIONS(1289), - [aux_sym_include_once_expression_token1] = ACTIONS(1289), - [aux_sym_require_expression_token1] = ACTIONS(1289), - [aux_sym_require_once_expression_token1] = ACTIONS(1289), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_name] = ACTIONS(1294), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1292), + [aux_sym_function_static_declaration_token1] = ACTIONS(1294), + [aux_sym_global_declaration_token1] = ACTIONS(1294), + [aux_sym_namespace_definition_token1] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1294), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [aux_sym_trait_declaration_token1] = ACTIONS(1294), + [aux_sym_interface_declaration_token1] = ACTIONS(1294), + [aux_sym_class_declaration_token1] = ACTIONS(1294), + [aux_sym_final_modifier_token1] = ACTIONS(1294), + [aux_sym_abstract_modifier_token1] = ACTIONS(1294), + [aux_sym_visibility_modifier_token1] = ACTIONS(1294), + [aux_sym_visibility_modifier_token2] = ACTIONS(1294), + [aux_sym_visibility_modifier_token3] = ACTIONS(1294), + [aux_sym_arrow_function_token1] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_array] = ACTIONS(1294), + [anon_sym_unset] = ACTIONS(1294), + [aux_sym_echo_statement_token1] = ACTIONS(1294), + [anon_sym_declare] = ACTIONS(1294), + [aux_sym_declare_statement_token1] = ACTIONS(1294), + [sym_float] = ACTIONS(1294), + [aux_sym_try_statement_token1] = ACTIONS(1294), + [aux_sym_goto_statement_token1] = ACTIONS(1294), + [aux_sym_continue_statement_token1] = ACTIONS(1294), + [aux_sym_break_statement_token1] = ACTIONS(1294), + [sym_integer] = ACTIONS(1294), + [aux_sym_return_statement_token1] = ACTIONS(1294), + [aux_sym_throw_expression_token1] = ACTIONS(1294), + [aux_sym_while_statement_token1] = ACTIONS(1294), + [aux_sym_while_statement_token2] = ACTIONS(1294), + [aux_sym_do_statement_token1] = ACTIONS(1294), + [aux_sym_for_statement_token1] = ACTIONS(1294), + [aux_sym_for_statement_token2] = ACTIONS(1294), + [aux_sym_foreach_statement_token1] = ACTIONS(1294), + [aux_sym_foreach_statement_token2] = ACTIONS(1294), + [aux_sym_if_statement_token1] = ACTIONS(1294), + [aux_sym_if_statement_token2] = ACTIONS(1294), + [aux_sym_else_if_clause_token1] = ACTIONS(1294), + [aux_sym_else_clause_token1] = ACTIONS(1294), + [aux_sym_match_expression_token1] = ACTIONS(1294), + [aux_sym_match_default_expression_token1] = ACTIONS(1294), + [aux_sym_switch_statement_token1] = ACTIONS(1294), + [aux_sym_switch_block_token1] = ACTIONS(1294), + [aux_sym_case_statement_token1] = ACTIONS(1294), + [anon_sym_AT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_clone] = ACTIONS(1294), + [anon_sym_print] = ACTIONS(1294), + [anon_sym_new] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [sym_shell_command_expression] = ACTIONS(1292), + [anon_sym_list] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_self] = ACTIONS(1294), + [anon_sym_parent] = ACTIONS(1294), + [anon_sym_POUND_LBRACK] = ACTIONS(1292), + [sym_string] = ACTIONS(1292), + [sym_boolean] = ACTIONS(1294), + [sym_null] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1294), + [aux_sym_include_expression_token1] = ACTIONS(1294), + [aux_sym_include_once_expression_token1] = ACTIONS(1294), + [aux_sym_require_expression_token1] = ACTIONS(1294), + [aux_sym_require_once_expression_token1] = ACTIONS(1294), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1287), + [sym_heredoc] = ACTIONS(1292), }, [514] = { [sym_text_interpolation] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_name] = ACTIONS(1293), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1291), - [aux_sym_function_static_declaration_token1] = ACTIONS(1293), - [aux_sym_global_declaration_token1] = ACTIONS(1293), - [aux_sym_namespace_definition_token1] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1293), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [aux_sym_trait_declaration_token1] = ACTIONS(1293), - [aux_sym_interface_declaration_token1] = ACTIONS(1293), - [aux_sym_class_declaration_token1] = ACTIONS(1293), - [aux_sym_class_modifier_token1] = ACTIONS(1293), - [aux_sym_class_modifier_token2] = ACTIONS(1293), - [aux_sym_visibility_modifier_token1] = ACTIONS(1293), - [aux_sym_visibility_modifier_token2] = ACTIONS(1293), - [aux_sym_visibility_modifier_token3] = ACTIONS(1293), - [aux_sym_arrow_function_token1] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_array] = ACTIONS(1293), - [anon_sym_unset] = ACTIONS(1293), - [aux_sym_echo_statement_token1] = ACTIONS(1293), - [anon_sym_declare] = ACTIONS(1293), - [aux_sym_declare_statement_token1] = ACTIONS(1293), - [sym_float] = ACTIONS(1293), - [aux_sym_try_statement_token1] = ACTIONS(1293), - [aux_sym_goto_statement_token1] = ACTIONS(1293), - [aux_sym_continue_statement_token1] = ACTIONS(1293), - [aux_sym_break_statement_token1] = ACTIONS(1293), - [sym_integer] = ACTIONS(1293), - [aux_sym_return_statement_token1] = ACTIONS(1293), - [aux_sym_throw_expression_token1] = ACTIONS(1293), - [aux_sym_while_statement_token1] = ACTIONS(1293), - [aux_sym_while_statement_token2] = ACTIONS(1293), - [aux_sym_do_statement_token1] = ACTIONS(1293), - [aux_sym_for_statement_token1] = ACTIONS(1293), - [aux_sym_for_statement_token2] = ACTIONS(1293), - [aux_sym_foreach_statement_token1] = ACTIONS(1293), - [aux_sym_foreach_statement_token2] = ACTIONS(1293), - [aux_sym_if_statement_token1] = ACTIONS(1293), - [aux_sym_if_statement_token2] = ACTIONS(1293), - [aux_sym_else_if_clause_token1] = ACTIONS(1293), - [aux_sym_else_clause_token1] = ACTIONS(1293), - [aux_sym_match_expression_token1] = ACTIONS(1293), - [aux_sym_match_default_expression_token1] = ACTIONS(1293), - [aux_sym_switch_statement_token1] = ACTIONS(1293), - [aux_sym_switch_block_token1] = ACTIONS(1293), - [aux_sym_case_statement_token1] = ACTIONS(1293), - [anon_sym_AT] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_clone] = ACTIONS(1293), - [anon_sym_print] = ACTIONS(1293), - [anon_sym_new] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [sym_shell_command_expression] = ACTIONS(1291), - [anon_sym_list] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_self] = ACTIONS(1293), - [anon_sym_parent] = ACTIONS(1293), - [anon_sym_POUND_LBRACK] = ACTIONS(1291), - [sym_string] = ACTIONS(1291), - [sym_boolean] = ACTIONS(1293), - [sym_null] = ACTIONS(1293), - [anon_sym_DOLLAR] = ACTIONS(1291), - [anon_sym_yield] = ACTIONS(1293), - [aux_sym_include_expression_token1] = ACTIONS(1293), - [aux_sym_include_once_expression_token1] = ACTIONS(1293), - [aux_sym_require_expression_token1] = ACTIONS(1293), - [aux_sym_require_once_expression_token1] = ACTIONS(1293), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_name] = ACTIONS(1298), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1296), + [aux_sym_function_static_declaration_token1] = ACTIONS(1298), + [aux_sym_global_declaration_token1] = ACTIONS(1298), + [aux_sym_namespace_definition_token1] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1298), + [anon_sym_BSLASH] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [aux_sym_trait_declaration_token1] = ACTIONS(1298), + [aux_sym_interface_declaration_token1] = ACTIONS(1298), + [aux_sym_class_declaration_token1] = ACTIONS(1298), + [aux_sym_final_modifier_token1] = ACTIONS(1298), + [aux_sym_abstract_modifier_token1] = ACTIONS(1298), + [aux_sym_visibility_modifier_token1] = ACTIONS(1298), + [aux_sym_visibility_modifier_token2] = ACTIONS(1298), + [aux_sym_visibility_modifier_token3] = ACTIONS(1298), + [aux_sym_arrow_function_token1] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_array] = ACTIONS(1298), + [anon_sym_unset] = ACTIONS(1298), + [aux_sym_echo_statement_token1] = ACTIONS(1298), + [anon_sym_declare] = ACTIONS(1298), + [aux_sym_declare_statement_token1] = ACTIONS(1298), + [sym_float] = ACTIONS(1298), + [aux_sym_try_statement_token1] = ACTIONS(1298), + [aux_sym_goto_statement_token1] = ACTIONS(1298), + [aux_sym_continue_statement_token1] = ACTIONS(1298), + [aux_sym_break_statement_token1] = ACTIONS(1298), + [sym_integer] = ACTIONS(1298), + [aux_sym_return_statement_token1] = ACTIONS(1298), + [aux_sym_throw_expression_token1] = ACTIONS(1298), + [aux_sym_while_statement_token1] = ACTIONS(1298), + [aux_sym_while_statement_token2] = ACTIONS(1298), + [aux_sym_do_statement_token1] = ACTIONS(1298), + [aux_sym_for_statement_token1] = ACTIONS(1298), + [aux_sym_for_statement_token2] = ACTIONS(1298), + [aux_sym_foreach_statement_token1] = ACTIONS(1298), + [aux_sym_foreach_statement_token2] = ACTIONS(1298), + [aux_sym_if_statement_token1] = ACTIONS(1298), + [aux_sym_if_statement_token2] = ACTIONS(1298), + [aux_sym_else_if_clause_token1] = ACTIONS(1298), + [aux_sym_else_clause_token1] = ACTIONS(1298), + [aux_sym_match_expression_token1] = ACTIONS(1298), + [aux_sym_match_default_expression_token1] = ACTIONS(1298), + [aux_sym_switch_statement_token1] = ACTIONS(1298), + [aux_sym_switch_block_token1] = ACTIONS(1298), + [aux_sym_case_statement_token1] = ACTIONS(1298), + [anon_sym_AT] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_clone] = ACTIONS(1298), + [anon_sym_print] = ACTIONS(1298), + [anon_sym_new] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [sym_shell_command_expression] = ACTIONS(1296), + [anon_sym_list] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_self] = ACTIONS(1298), + [anon_sym_parent] = ACTIONS(1298), + [anon_sym_POUND_LBRACK] = ACTIONS(1296), + [sym_string] = ACTIONS(1296), + [sym_boolean] = ACTIONS(1298), + [sym_null] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1298), + [aux_sym_include_expression_token1] = ACTIONS(1298), + [aux_sym_include_once_expression_token1] = ACTIONS(1298), + [aux_sym_require_expression_token1] = ACTIONS(1298), + [aux_sym_require_once_expression_token1] = ACTIONS(1298), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1291), + [sym_heredoc] = ACTIONS(1296), }, [515] = { [sym_text_interpolation] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_name] = ACTIONS(1293), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1291), - [aux_sym_function_static_declaration_token1] = ACTIONS(1293), - [aux_sym_global_declaration_token1] = ACTIONS(1293), - [aux_sym_namespace_definition_token1] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1293), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1293), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [aux_sym_trait_declaration_token1] = ACTIONS(1293), - [aux_sym_interface_declaration_token1] = ACTIONS(1293), - [aux_sym_class_declaration_token1] = ACTIONS(1293), - [aux_sym_class_modifier_token1] = ACTIONS(1293), - [aux_sym_class_modifier_token2] = ACTIONS(1293), - [aux_sym_visibility_modifier_token1] = ACTIONS(1293), - [aux_sym_visibility_modifier_token2] = ACTIONS(1293), - [aux_sym_visibility_modifier_token3] = ACTIONS(1293), - [aux_sym_arrow_function_token1] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_array] = ACTIONS(1293), - [anon_sym_unset] = ACTIONS(1293), - [aux_sym_echo_statement_token1] = ACTIONS(1293), - [anon_sym_declare] = ACTIONS(1293), - [aux_sym_declare_statement_token1] = ACTIONS(1293), - [sym_float] = ACTIONS(1293), - [aux_sym_try_statement_token1] = ACTIONS(1293), - [aux_sym_goto_statement_token1] = ACTIONS(1293), - [aux_sym_continue_statement_token1] = ACTIONS(1293), - [aux_sym_break_statement_token1] = ACTIONS(1293), - [sym_integer] = ACTIONS(1293), - [aux_sym_return_statement_token1] = ACTIONS(1293), - [aux_sym_throw_expression_token1] = ACTIONS(1293), - [aux_sym_while_statement_token1] = ACTIONS(1293), - [aux_sym_while_statement_token2] = ACTIONS(1293), - [aux_sym_do_statement_token1] = ACTIONS(1293), - [aux_sym_for_statement_token1] = ACTIONS(1293), - [aux_sym_for_statement_token2] = ACTIONS(1293), - [aux_sym_foreach_statement_token1] = ACTIONS(1293), - [aux_sym_foreach_statement_token2] = ACTIONS(1293), - [aux_sym_if_statement_token1] = ACTIONS(1293), - [aux_sym_if_statement_token2] = ACTIONS(1293), - [aux_sym_else_if_clause_token1] = ACTIONS(1293), - [aux_sym_else_clause_token1] = ACTIONS(1293), - [aux_sym_match_expression_token1] = ACTIONS(1293), - [aux_sym_match_default_expression_token1] = ACTIONS(1293), - [aux_sym_switch_statement_token1] = ACTIONS(1293), - [aux_sym_switch_block_token1] = ACTIONS(1293), - [aux_sym_case_statement_token1] = ACTIONS(1293), - [anon_sym_AT] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_clone] = ACTIONS(1293), - [anon_sym_print] = ACTIONS(1293), - [anon_sym_new] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [sym_shell_command_expression] = ACTIONS(1291), - [anon_sym_list] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_self] = ACTIONS(1293), - [anon_sym_parent] = ACTIONS(1293), - [anon_sym_POUND_LBRACK] = ACTIONS(1291), - [sym_string] = ACTIONS(1291), - [sym_boolean] = ACTIONS(1293), - [sym_null] = ACTIONS(1293), - [anon_sym_DOLLAR] = ACTIONS(1291), - [anon_sym_yield] = ACTIONS(1293), - [aux_sym_include_expression_token1] = ACTIONS(1293), - [aux_sym_include_once_expression_token1] = ACTIONS(1293), - [aux_sym_require_expression_token1] = ACTIONS(1293), - [aux_sym_require_once_expression_token1] = ACTIONS(1293), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_name] = ACTIONS(1294), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1292), + [aux_sym_function_static_declaration_token1] = ACTIONS(1294), + [aux_sym_global_declaration_token1] = ACTIONS(1294), + [aux_sym_namespace_definition_token1] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1294), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [aux_sym_trait_declaration_token1] = ACTIONS(1294), + [aux_sym_interface_declaration_token1] = ACTIONS(1294), + [aux_sym_class_declaration_token1] = ACTIONS(1294), + [aux_sym_final_modifier_token1] = ACTIONS(1294), + [aux_sym_abstract_modifier_token1] = ACTIONS(1294), + [aux_sym_visibility_modifier_token1] = ACTIONS(1294), + [aux_sym_visibility_modifier_token2] = ACTIONS(1294), + [aux_sym_visibility_modifier_token3] = ACTIONS(1294), + [aux_sym_arrow_function_token1] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_array] = ACTIONS(1294), + [anon_sym_unset] = ACTIONS(1294), + [aux_sym_echo_statement_token1] = ACTIONS(1294), + [anon_sym_declare] = ACTIONS(1294), + [aux_sym_declare_statement_token1] = ACTIONS(1294), + [sym_float] = ACTIONS(1294), + [aux_sym_try_statement_token1] = ACTIONS(1294), + [aux_sym_goto_statement_token1] = ACTIONS(1294), + [aux_sym_continue_statement_token1] = ACTIONS(1294), + [aux_sym_break_statement_token1] = ACTIONS(1294), + [sym_integer] = ACTIONS(1294), + [aux_sym_return_statement_token1] = ACTIONS(1294), + [aux_sym_throw_expression_token1] = ACTIONS(1294), + [aux_sym_while_statement_token1] = ACTIONS(1294), + [aux_sym_while_statement_token2] = ACTIONS(1294), + [aux_sym_do_statement_token1] = ACTIONS(1294), + [aux_sym_for_statement_token1] = ACTIONS(1294), + [aux_sym_for_statement_token2] = ACTIONS(1294), + [aux_sym_foreach_statement_token1] = ACTIONS(1294), + [aux_sym_foreach_statement_token2] = ACTIONS(1294), + [aux_sym_if_statement_token1] = ACTIONS(1294), + [aux_sym_if_statement_token2] = ACTIONS(1294), + [aux_sym_else_if_clause_token1] = ACTIONS(1294), + [aux_sym_else_clause_token1] = ACTIONS(1294), + [aux_sym_match_expression_token1] = ACTIONS(1294), + [aux_sym_match_default_expression_token1] = ACTIONS(1294), + [aux_sym_switch_statement_token1] = ACTIONS(1294), + [aux_sym_switch_block_token1] = ACTIONS(1294), + [aux_sym_case_statement_token1] = ACTIONS(1294), + [anon_sym_AT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_clone] = ACTIONS(1294), + [anon_sym_print] = ACTIONS(1294), + [anon_sym_new] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [sym_shell_command_expression] = ACTIONS(1292), + [anon_sym_list] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_self] = ACTIONS(1294), + [anon_sym_parent] = ACTIONS(1294), + [anon_sym_POUND_LBRACK] = ACTIONS(1292), + [sym_string] = ACTIONS(1292), + [sym_boolean] = ACTIONS(1294), + [sym_null] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1294), + [aux_sym_include_expression_token1] = ACTIONS(1294), + [aux_sym_include_once_expression_token1] = ACTIONS(1294), + [aux_sym_require_expression_token1] = ACTIONS(1294), + [aux_sym_require_once_expression_token1] = ACTIONS(1294), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1291), + [sym_heredoc] = ACTIONS(1292), }, [516] = { [sym_text_interpolation] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_name] = ACTIONS(1297), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1295), - [aux_sym_function_static_declaration_token1] = ACTIONS(1297), - [aux_sym_global_declaration_token1] = ACTIONS(1297), - [aux_sym_namespace_definition_token1] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1297), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1297), - [anon_sym_BSLASH] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [aux_sym_trait_declaration_token1] = ACTIONS(1297), - [aux_sym_interface_declaration_token1] = ACTIONS(1297), - [aux_sym_class_declaration_token1] = ACTIONS(1297), - [aux_sym_class_modifier_token1] = ACTIONS(1297), - [aux_sym_class_modifier_token2] = ACTIONS(1297), - [aux_sym_visibility_modifier_token1] = ACTIONS(1297), - [aux_sym_visibility_modifier_token2] = ACTIONS(1297), - [aux_sym_visibility_modifier_token3] = ACTIONS(1297), - [aux_sym_arrow_function_token1] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_array] = ACTIONS(1297), - [anon_sym_unset] = ACTIONS(1297), - [aux_sym_echo_statement_token1] = ACTIONS(1297), - [anon_sym_declare] = ACTIONS(1297), - [aux_sym_declare_statement_token1] = ACTIONS(1297), - [sym_float] = ACTIONS(1297), - [aux_sym_try_statement_token1] = ACTIONS(1297), - [aux_sym_goto_statement_token1] = ACTIONS(1297), - [aux_sym_continue_statement_token1] = ACTIONS(1297), - [aux_sym_break_statement_token1] = ACTIONS(1297), - [sym_integer] = ACTIONS(1297), - [aux_sym_return_statement_token1] = ACTIONS(1297), - [aux_sym_throw_expression_token1] = ACTIONS(1297), - [aux_sym_while_statement_token1] = ACTIONS(1297), - [aux_sym_while_statement_token2] = ACTIONS(1297), - [aux_sym_do_statement_token1] = ACTIONS(1297), - [aux_sym_for_statement_token1] = ACTIONS(1297), - [aux_sym_for_statement_token2] = ACTIONS(1297), - [aux_sym_foreach_statement_token1] = ACTIONS(1297), - [aux_sym_foreach_statement_token2] = ACTIONS(1297), - [aux_sym_if_statement_token1] = ACTIONS(1297), - [aux_sym_if_statement_token2] = ACTIONS(1297), - [aux_sym_else_if_clause_token1] = ACTIONS(1297), - [aux_sym_else_clause_token1] = ACTIONS(1297), - [aux_sym_match_expression_token1] = ACTIONS(1297), - [aux_sym_match_default_expression_token1] = ACTIONS(1297), - [aux_sym_switch_statement_token1] = ACTIONS(1297), - [aux_sym_switch_block_token1] = ACTIONS(1297), - [aux_sym_case_statement_token1] = ACTIONS(1297), - [anon_sym_AT] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_clone] = ACTIONS(1297), - [anon_sym_print] = ACTIONS(1297), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [sym_shell_command_expression] = ACTIONS(1295), - [anon_sym_list] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_self] = ACTIONS(1297), - [anon_sym_parent] = ACTIONS(1297), - [anon_sym_POUND_LBRACK] = ACTIONS(1295), - [sym_string] = ACTIONS(1295), - [sym_boolean] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [anon_sym_DOLLAR] = ACTIONS(1295), - [anon_sym_yield] = ACTIONS(1297), - [aux_sym_include_expression_token1] = ACTIONS(1297), - [aux_sym_include_once_expression_token1] = ACTIONS(1297), - [aux_sym_require_expression_token1] = ACTIONS(1297), - [aux_sym_require_once_expression_token1] = ACTIONS(1297), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_name] = ACTIONS(1302), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1300), + [aux_sym_function_static_declaration_token1] = ACTIONS(1302), + [aux_sym_global_declaration_token1] = ACTIONS(1302), + [aux_sym_namespace_definition_token1] = ACTIONS(1302), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1302), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1302), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1302), + [anon_sym_BSLASH] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [aux_sym_trait_declaration_token1] = ACTIONS(1302), + [aux_sym_interface_declaration_token1] = ACTIONS(1302), + [aux_sym_class_declaration_token1] = ACTIONS(1302), + [aux_sym_final_modifier_token1] = ACTIONS(1302), + [aux_sym_abstract_modifier_token1] = ACTIONS(1302), + [aux_sym_visibility_modifier_token1] = ACTIONS(1302), + [aux_sym_visibility_modifier_token2] = ACTIONS(1302), + [aux_sym_visibility_modifier_token3] = ACTIONS(1302), + [aux_sym_arrow_function_token1] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_array] = ACTIONS(1302), + [anon_sym_unset] = ACTIONS(1302), + [aux_sym_echo_statement_token1] = ACTIONS(1302), + [anon_sym_declare] = ACTIONS(1302), + [aux_sym_declare_statement_token1] = ACTIONS(1302), + [sym_float] = ACTIONS(1302), + [aux_sym_try_statement_token1] = ACTIONS(1302), + [aux_sym_goto_statement_token1] = ACTIONS(1302), + [aux_sym_continue_statement_token1] = ACTIONS(1302), + [aux_sym_break_statement_token1] = ACTIONS(1302), + [sym_integer] = ACTIONS(1302), + [aux_sym_return_statement_token1] = ACTIONS(1302), + [aux_sym_throw_expression_token1] = ACTIONS(1302), + [aux_sym_while_statement_token1] = ACTIONS(1302), + [aux_sym_while_statement_token2] = ACTIONS(1302), + [aux_sym_do_statement_token1] = ACTIONS(1302), + [aux_sym_for_statement_token1] = ACTIONS(1302), + [aux_sym_for_statement_token2] = ACTIONS(1302), + [aux_sym_foreach_statement_token1] = ACTIONS(1302), + [aux_sym_foreach_statement_token2] = ACTIONS(1302), + [aux_sym_if_statement_token1] = ACTIONS(1302), + [aux_sym_if_statement_token2] = ACTIONS(1302), + [aux_sym_else_if_clause_token1] = ACTIONS(1302), + [aux_sym_else_clause_token1] = ACTIONS(1302), + [aux_sym_match_expression_token1] = ACTIONS(1302), + [aux_sym_match_default_expression_token1] = ACTIONS(1302), + [aux_sym_switch_statement_token1] = ACTIONS(1302), + [aux_sym_switch_block_token1] = ACTIONS(1302), + [aux_sym_case_statement_token1] = ACTIONS(1302), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_clone] = ACTIONS(1302), + [anon_sym_print] = ACTIONS(1302), + [anon_sym_new] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [sym_shell_command_expression] = ACTIONS(1300), + [anon_sym_list] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_self] = ACTIONS(1302), + [anon_sym_parent] = ACTIONS(1302), + [anon_sym_POUND_LBRACK] = ACTIONS(1300), + [sym_string] = ACTIONS(1300), + [sym_boolean] = ACTIONS(1302), + [sym_null] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [aux_sym_include_expression_token1] = ACTIONS(1302), + [aux_sym_include_once_expression_token1] = ACTIONS(1302), + [aux_sym_require_expression_token1] = ACTIONS(1302), + [aux_sym_require_once_expression_token1] = ACTIONS(1302), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1295), + [sym_heredoc] = ACTIONS(1300), }, [517] = { [sym_text_interpolation] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_name] = ACTIONS(1301), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1299), - [aux_sym_function_static_declaration_token1] = ACTIONS(1301), - [aux_sym_global_declaration_token1] = ACTIONS(1301), - [aux_sym_namespace_definition_token1] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1301), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1301), - [anon_sym_BSLASH] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [aux_sym_trait_declaration_token1] = ACTIONS(1301), - [aux_sym_interface_declaration_token1] = ACTIONS(1301), - [aux_sym_class_declaration_token1] = ACTIONS(1301), - [aux_sym_class_modifier_token1] = ACTIONS(1301), - [aux_sym_class_modifier_token2] = ACTIONS(1301), - [aux_sym_visibility_modifier_token1] = ACTIONS(1301), - [aux_sym_visibility_modifier_token2] = ACTIONS(1301), - [aux_sym_visibility_modifier_token3] = ACTIONS(1301), - [aux_sym_arrow_function_token1] = ACTIONS(1301), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_array] = ACTIONS(1301), - [anon_sym_unset] = ACTIONS(1301), - [aux_sym_echo_statement_token1] = ACTIONS(1301), - [anon_sym_declare] = ACTIONS(1301), - [aux_sym_declare_statement_token1] = ACTIONS(1301), - [sym_float] = ACTIONS(1301), - [aux_sym_try_statement_token1] = ACTIONS(1301), - [aux_sym_goto_statement_token1] = ACTIONS(1301), - [aux_sym_continue_statement_token1] = ACTIONS(1301), - [aux_sym_break_statement_token1] = ACTIONS(1301), - [sym_integer] = ACTIONS(1301), - [aux_sym_return_statement_token1] = ACTIONS(1301), - [aux_sym_throw_expression_token1] = ACTIONS(1301), - [aux_sym_while_statement_token1] = ACTIONS(1301), - [aux_sym_while_statement_token2] = ACTIONS(1301), - [aux_sym_do_statement_token1] = ACTIONS(1301), - [aux_sym_for_statement_token1] = ACTIONS(1301), - [aux_sym_for_statement_token2] = ACTIONS(1301), - [aux_sym_foreach_statement_token1] = ACTIONS(1301), - [aux_sym_foreach_statement_token2] = ACTIONS(1301), - [aux_sym_if_statement_token1] = ACTIONS(1301), - [aux_sym_if_statement_token2] = ACTIONS(1301), - [aux_sym_else_if_clause_token1] = ACTIONS(1301), - [aux_sym_else_clause_token1] = ACTIONS(1301), - [aux_sym_match_expression_token1] = ACTIONS(1301), - [aux_sym_match_default_expression_token1] = ACTIONS(1301), - [aux_sym_switch_statement_token1] = ACTIONS(1301), - [aux_sym_switch_block_token1] = ACTIONS(1301), - [aux_sym_case_statement_token1] = ACTIONS(1301), - [anon_sym_AT] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_clone] = ACTIONS(1301), - [anon_sym_print] = ACTIONS(1301), - [anon_sym_new] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_shell_command_expression] = ACTIONS(1299), - [anon_sym_list] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_self] = ACTIONS(1301), - [anon_sym_parent] = ACTIONS(1301), - [anon_sym_POUND_LBRACK] = ACTIONS(1299), - [sym_string] = ACTIONS(1299), - [sym_boolean] = ACTIONS(1301), - [sym_null] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(1299), - [anon_sym_yield] = ACTIONS(1301), - [aux_sym_include_expression_token1] = ACTIONS(1301), - [aux_sym_include_once_expression_token1] = ACTIONS(1301), - [aux_sym_require_expression_token1] = ACTIONS(1301), - [aux_sym_require_once_expression_token1] = ACTIONS(1301), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_name] = ACTIONS(1306), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1304), + [aux_sym_function_static_declaration_token1] = ACTIONS(1306), + [aux_sym_global_declaration_token1] = ACTIONS(1306), + [aux_sym_namespace_definition_token1] = ACTIONS(1306), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1306), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1306), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1306), + [anon_sym_BSLASH] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [aux_sym_trait_declaration_token1] = ACTIONS(1306), + [aux_sym_interface_declaration_token1] = ACTIONS(1306), + [aux_sym_class_declaration_token1] = ACTIONS(1306), + [aux_sym_final_modifier_token1] = ACTIONS(1306), + [aux_sym_abstract_modifier_token1] = ACTIONS(1306), + [aux_sym_visibility_modifier_token1] = ACTIONS(1306), + [aux_sym_visibility_modifier_token2] = ACTIONS(1306), + [aux_sym_visibility_modifier_token3] = ACTIONS(1306), + [aux_sym_arrow_function_token1] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_array] = ACTIONS(1306), + [anon_sym_unset] = ACTIONS(1306), + [aux_sym_echo_statement_token1] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [aux_sym_declare_statement_token1] = ACTIONS(1306), + [sym_float] = ACTIONS(1306), + [aux_sym_try_statement_token1] = ACTIONS(1306), + [aux_sym_goto_statement_token1] = ACTIONS(1306), + [aux_sym_continue_statement_token1] = ACTIONS(1306), + [aux_sym_break_statement_token1] = ACTIONS(1306), + [sym_integer] = ACTIONS(1306), + [aux_sym_return_statement_token1] = ACTIONS(1306), + [aux_sym_throw_expression_token1] = ACTIONS(1306), + [aux_sym_while_statement_token1] = ACTIONS(1306), + [aux_sym_while_statement_token2] = ACTIONS(1306), + [aux_sym_do_statement_token1] = ACTIONS(1306), + [aux_sym_for_statement_token1] = ACTIONS(1306), + [aux_sym_for_statement_token2] = ACTIONS(1306), + [aux_sym_foreach_statement_token1] = ACTIONS(1306), + [aux_sym_foreach_statement_token2] = ACTIONS(1306), + [aux_sym_if_statement_token1] = ACTIONS(1306), + [aux_sym_if_statement_token2] = ACTIONS(1306), + [aux_sym_else_if_clause_token1] = ACTIONS(1306), + [aux_sym_else_clause_token1] = ACTIONS(1306), + [aux_sym_match_expression_token1] = ACTIONS(1306), + [aux_sym_match_default_expression_token1] = ACTIONS(1306), + [aux_sym_switch_statement_token1] = ACTIONS(1306), + [aux_sym_switch_block_token1] = ACTIONS(1306), + [aux_sym_case_statement_token1] = ACTIONS(1306), + [anon_sym_AT] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_clone] = ACTIONS(1306), + [anon_sym_print] = ACTIONS(1306), + [anon_sym_new] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [sym_shell_command_expression] = ACTIONS(1304), + [anon_sym_list] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_self] = ACTIONS(1306), + [anon_sym_parent] = ACTIONS(1306), + [anon_sym_POUND_LBRACK] = ACTIONS(1304), + [sym_string] = ACTIONS(1304), + [sym_boolean] = ACTIONS(1306), + [sym_null] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_yield] = ACTIONS(1306), + [aux_sym_include_expression_token1] = ACTIONS(1306), + [aux_sym_include_once_expression_token1] = ACTIONS(1306), + [aux_sym_require_expression_token1] = ACTIONS(1306), + [aux_sym_require_once_expression_token1] = ACTIONS(1306), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1299), + [sym_heredoc] = ACTIONS(1304), }, [518] = { [sym_text_interpolation] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_name] = ACTIONS(1305), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1303), - [aux_sym_function_static_declaration_token1] = ACTIONS(1305), - [aux_sym_global_declaration_token1] = ACTIONS(1305), - [aux_sym_namespace_definition_token1] = ACTIONS(1305), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1305), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1305), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1305), - [anon_sym_BSLASH] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [aux_sym_trait_declaration_token1] = ACTIONS(1305), - [aux_sym_interface_declaration_token1] = ACTIONS(1305), - [aux_sym_class_declaration_token1] = ACTIONS(1305), - [aux_sym_class_modifier_token1] = ACTIONS(1305), - [aux_sym_class_modifier_token2] = ACTIONS(1305), - [aux_sym_visibility_modifier_token1] = ACTIONS(1305), - [aux_sym_visibility_modifier_token2] = ACTIONS(1305), - [aux_sym_visibility_modifier_token3] = ACTIONS(1305), - [aux_sym_arrow_function_token1] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_array] = ACTIONS(1305), - [anon_sym_unset] = ACTIONS(1305), - [aux_sym_echo_statement_token1] = ACTIONS(1305), - [anon_sym_declare] = ACTIONS(1305), - [aux_sym_declare_statement_token1] = ACTIONS(1305), - [sym_float] = ACTIONS(1305), - [aux_sym_try_statement_token1] = ACTIONS(1305), - [aux_sym_goto_statement_token1] = ACTIONS(1305), - [aux_sym_continue_statement_token1] = ACTIONS(1305), - [aux_sym_break_statement_token1] = ACTIONS(1305), - [sym_integer] = ACTIONS(1305), - [aux_sym_return_statement_token1] = ACTIONS(1305), - [aux_sym_throw_expression_token1] = ACTIONS(1305), - [aux_sym_while_statement_token1] = ACTIONS(1305), - [aux_sym_while_statement_token2] = ACTIONS(1305), - [aux_sym_do_statement_token1] = ACTIONS(1305), - [aux_sym_for_statement_token1] = ACTIONS(1305), - [aux_sym_for_statement_token2] = ACTIONS(1305), - [aux_sym_foreach_statement_token1] = ACTIONS(1305), - [aux_sym_foreach_statement_token2] = ACTIONS(1305), - [aux_sym_if_statement_token1] = ACTIONS(1305), - [aux_sym_if_statement_token2] = ACTIONS(1305), - [aux_sym_else_if_clause_token1] = ACTIONS(1305), - [aux_sym_else_clause_token1] = ACTIONS(1305), - [aux_sym_match_expression_token1] = ACTIONS(1305), - [aux_sym_match_default_expression_token1] = ACTIONS(1305), - [aux_sym_switch_statement_token1] = ACTIONS(1305), - [aux_sym_switch_block_token1] = ACTIONS(1305), - [aux_sym_case_statement_token1] = ACTIONS(1305), - [anon_sym_AT] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_clone] = ACTIONS(1305), - [anon_sym_print] = ACTIONS(1305), - [anon_sym_new] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [sym_shell_command_expression] = ACTIONS(1303), - [anon_sym_list] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_self] = ACTIONS(1305), - [anon_sym_parent] = ACTIONS(1305), - [anon_sym_POUND_LBRACK] = ACTIONS(1303), - [sym_string] = ACTIONS(1303), - [sym_boolean] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1303), - [anon_sym_yield] = ACTIONS(1305), - [aux_sym_include_expression_token1] = ACTIONS(1305), - [aux_sym_include_once_expression_token1] = ACTIONS(1305), - [aux_sym_require_expression_token1] = ACTIONS(1305), - [aux_sym_require_once_expression_token1] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_name] = ACTIONS(1310), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1308), + [aux_sym_function_static_declaration_token1] = ACTIONS(1310), + [aux_sym_global_declaration_token1] = ACTIONS(1310), + [aux_sym_namespace_definition_token1] = ACTIONS(1310), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1310), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1310), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1310), + [anon_sym_BSLASH] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [aux_sym_trait_declaration_token1] = ACTIONS(1310), + [aux_sym_interface_declaration_token1] = ACTIONS(1310), + [aux_sym_class_declaration_token1] = ACTIONS(1310), + [aux_sym_final_modifier_token1] = ACTIONS(1310), + [aux_sym_abstract_modifier_token1] = ACTIONS(1310), + [aux_sym_visibility_modifier_token1] = ACTIONS(1310), + [aux_sym_visibility_modifier_token2] = ACTIONS(1310), + [aux_sym_visibility_modifier_token3] = ACTIONS(1310), + [aux_sym_arrow_function_token1] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_array] = ACTIONS(1310), + [anon_sym_unset] = ACTIONS(1310), + [aux_sym_echo_statement_token1] = ACTIONS(1310), + [anon_sym_declare] = ACTIONS(1310), + [aux_sym_declare_statement_token1] = ACTIONS(1310), + [sym_float] = ACTIONS(1310), + [aux_sym_try_statement_token1] = ACTIONS(1310), + [aux_sym_goto_statement_token1] = ACTIONS(1310), + [aux_sym_continue_statement_token1] = ACTIONS(1310), + [aux_sym_break_statement_token1] = ACTIONS(1310), + [sym_integer] = ACTIONS(1310), + [aux_sym_return_statement_token1] = ACTIONS(1310), + [aux_sym_throw_expression_token1] = ACTIONS(1310), + [aux_sym_while_statement_token1] = ACTIONS(1310), + [aux_sym_while_statement_token2] = ACTIONS(1310), + [aux_sym_do_statement_token1] = ACTIONS(1310), + [aux_sym_for_statement_token1] = ACTIONS(1310), + [aux_sym_for_statement_token2] = ACTIONS(1310), + [aux_sym_foreach_statement_token1] = ACTIONS(1310), + [aux_sym_foreach_statement_token2] = ACTIONS(1310), + [aux_sym_if_statement_token1] = ACTIONS(1310), + [aux_sym_if_statement_token2] = ACTIONS(1310), + [aux_sym_else_if_clause_token1] = ACTIONS(1310), + [aux_sym_else_clause_token1] = ACTIONS(1310), + [aux_sym_match_expression_token1] = ACTIONS(1310), + [aux_sym_match_default_expression_token1] = ACTIONS(1310), + [aux_sym_switch_statement_token1] = ACTIONS(1310), + [aux_sym_switch_block_token1] = ACTIONS(1310), + [aux_sym_case_statement_token1] = ACTIONS(1310), + [anon_sym_AT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_clone] = ACTIONS(1310), + [anon_sym_print] = ACTIONS(1310), + [anon_sym_new] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [sym_shell_command_expression] = ACTIONS(1308), + [anon_sym_list] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_self] = ACTIONS(1310), + [anon_sym_parent] = ACTIONS(1310), + [anon_sym_POUND_LBRACK] = ACTIONS(1308), + [sym_string] = ACTIONS(1308), + [sym_boolean] = ACTIONS(1310), + [sym_null] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1308), + [anon_sym_yield] = ACTIONS(1310), + [aux_sym_include_expression_token1] = ACTIONS(1310), + [aux_sym_include_once_expression_token1] = ACTIONS(1310), + [aux_sym_require_expression_token1] = ACTIONS(1310), + [aux_sym_require_once_expression_token1] = ACTIONS(1310), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1303), + [sym_heredoc] = ACTIONS(1308), }, [519] = { [sym_text_interpolation] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1307), - [sym_name] = ACTIONS(1309), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1307), - [aux_sym_function_static_declaration_token1] = ACTIONS(1309), - [aux_sym_global_declaration_token1] = ACTIONS(1309), - [aux_sym_namespace_definition_token1] = ACTIONS(1309), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1309), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1309), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1309), - [anon_sym_BSLASH] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1307), - [aux_sym_trait_declaration_token1] = ACTIONS(1309), - [aux_sym_interface_declaration_token1] = ACTIONS(1309), - [aux_sym_class_declaration_token1] = ACTIONS(1309), - [aux_sym_class_modifier_token1] = ACTIONS(1309), - [aux_sym_class_modifier_token2] = ACTIONS(1309), - [aux_sym_visibility_modifier_token1] = ACTIONS(1309), - [aux_sym_visibility_modifier_token2] = ACTIONS(1309), - [aux_sym_visibility_modifier_token3] = ACTIONS(1309), - [aux_sym_arrow_function_token1] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_array] = ACTIONS(1309), - [anon_sym_unset] = ACTIONS(1309), - [aux_sym_echo_statement_token1] = ACTIONS(1309), - [anon_sym_declare] = ACTIONS(1309), - [aux_sym_declare_statement_token1] = ACTIONS(1309), - [sym_float] = ACTIONS(1309), - [aux_sym_try_statement_token1] = ACTIONS(1309), - [aux_sym_goto_statement_token1] = ACTIONS(1309), - [aux_sym_continue_statement_token1] = ACTIONS(1309), - [aux_sym_break_statement_token1] = ACTIONS(1309), - [sym_integer] = ACTIONS(1309), - [aux_sym_return_statement_token1] = ACTIONS(1309), - [aux_sym_throw_expression_token1] = ACTIONS(1309), - [aux_sym_while_statement_token1] = ACTIONS(1309), - [aux_sym_while_statement_token2] = ACTIONS(1309), - [aux_sym_do_statement_token1] = ACTIONS(1309), - [aux_sym_for_statement_token1] = ACTIONS(1309), - [aux_sym_for_statement_token2] = ACTIONS(1309), - [aux_sym_foreach_statement_token1] = ACTIONS(1309), - [aux_sym_foreach_statement_token2] = ACTIONS(1309), - [aux_sym_if_statement_token1] = ACTIONS(1309), - [aux_sym_if_statement_token2] = ACTIONS(1309), - [aux_sym_else_if_clause_token1] = ACTIONS(1309), - [aux_sym_else_clause_token1] = ACTIONS(1309), - [aux_sym_match_expression_token1] = ACTIONS(1309), - [aux_sym_match_default_expression_token1] = ACTIONS(1309), - [aux_sym_switch_statement_token1] = ACTIONS(1309), - [aux_sym_switch_block_token1] = ACTIONS(1309), - [aux_sym_case_statement_token1] = ACTIONS(1309), - [anon_sym_AT] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_clone] = ACTIONS(1309), - [anon_sym_print] = ACTIONS(1309), - [anon_sym_new] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [sym_shell_command_expression] = ACTIONS(1307), - [anon_sym_list] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_self] = ACTIONS(1309), - [anon_sym_parent] = ACTIONS(1309), - [anon_sym_POUND_LBRACK] = ACTIONS(1307), - [sym_string] = ACTIONS(1307), - [sym_boolean] = ACTIONS(1309), - [sym_null] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1307), - [anon_sym_yield] = ACTIONS(1309), - [aux_sym_include_expression_token1] = ACTIONS(1309), - [aux_sym_include_once_expression_token1] = ACTIONS(1309), - [aux_sym_require_expression_token1] = ACTIONS(1309), - [aux_sym_require_once_expression_token1] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_name] = ACTIONS(1314), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1312), + [aux_sym_function_static_declaration_token1] = ACTIONS(1314), + [aux_sym_global_declaration_token1] = ACTIONS(1314), + [aux_sym_namespace_definition_token1] = ACTIONS(1314), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1314), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1314), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1314), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [aux_sym_trait_declaration_token1] = ACTIONS(1314), + [aux_sym_interface_declaration_token1] = ACTIONS(1314), + [aux_sym_class_declaration_token1] = ACTIONS(1314), + [aux_sym_final_modifier_token1] = ACTIONS(1314), + [aux_sym_abstract_modifier_token1] = ACTIONS(1314), + [aux_sym_visibility_modifier_token1] = ACTIONS(1314), + [aux_sym_visibility_modifier_token2] = ACTIONS(1314), + [aux_sym_visibility_modifier_token3] = ACTIONS(1314), + [aux_sym_arrow_function_token1] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_array] = ACTIONS(1314), + [anon_sym_unset] = ACTIONS(1314), + [aux_sym_echo_statement_token1] = ACTIONS(1314), + [anon_sym_declare] = ACTIONS(1314), + [aux_sym_declare_statement_token1] = ACTIONS(1314), + [sym_float] = ACTIONS(1314), + [aux_sym_try_statement_token1] = ACTIONS(1314), + [aux_sym_goto_statement_token1] = ACTIONS(1314), + [aux_sym_continue_statement_token1] = ACTIONS(1314), + [aux_sym_break_statement_token1] = ACTIONS(1314), + [sym_integer] = ACTIONS(1314), + [aux_sym_return_statement_token1] = ACTIONS(1314), + [aux_sym_throw_expression_token1] = ACTIONS(1314), + [aux_sym_while_statement_token1] = ACTIONS(1314), + [aux_sym_while_statement_token2] = ACTIONS(1314), + [aux_sym_do_statement_token1] = ACTIONS(1314), + [aux_sym_for_statement_token1] = ACTIONS(1314), + [aux_sym_for_statement_token2] = ACTIONS(1314), + [aux_sym_foreach_statement_token1] = ACTIONS(1314), + [aux_sym_foreach_statement_token2] = ACTIONS(1314), + [aux_sym_if_statement_token1] = ACTIONS(1314), + [aux_sym_if_statement_token2] = ACTIONS(1314), + [aux_sym_else_if_clause_token1] = ACTIONS(1314), + [aux_sym_else_clause_token1] = ACTIONS(1314), + [aux_sym_match_expression_token1] = ACTIONS(1314), + [aux_sym_match_default_expression_token1] = ACTIONS(1314), + [aux_sym_switch_statement_token1] = ACTIONS(1314), + [aux_sym_switch_block_token1] = ACTIONS(1314), + [aux_sym_case_statement_token1] = ACTIONS(1314), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_clone] = ACTIONS(1314), + [anon_sym_print] = ACTIONS(1314), + [anon_sym_new] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [sym_shell_command_expression] = ACTIONS(1312), + [anon_sym_list] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_self] = ACTIONS(1314), + [anon_sym_parent] = ACTIONS(1314), + [anon_sym_POUND_LBRACK] = ACTIONS(1312), + [sym_string] = ACTIONS(1312), + [sym_boolean] = ACTIONS(1314), + [sym_null] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1312), + [anon_sym_yield] = ACTIONS(1314), + [aux_sym_include_expression_token1] = ACTIONS(1314), + [aux_sym_include_once_expression_token1] = ACTIONS(1314), + [aux_sym_require_expression_token1] = ACTIONS(1314), + [aux_sym_require_once_expression_token1] = ACTIONS(1314), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1307), + [sym_heredoc] = ACTIONS(1312), }, [520] = { [sym_text_interpolation] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_name] = ACTIONS(1313), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1311), - [aux_sym_function_static_declaration_token1] = ACTIONS(1313), - [aux_sym_global_declaration_token1] = ACTIONS(1313), - [aux_sym_namespace_definition_token1] = ACTIONS(1313), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1313), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1313), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1313), - [anon_sym_BSLASH] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [aux_sym_trait_declaration_token1] = ACTIONS(1313), - [aux_sym_interface_declaration_token1] = ACTIONS(1313), - [aux_sym_class_declaration_token1] = ACTIONS(1313), - [aux_sym_class_modifier_token1] = ACTIONS(1313), - [aux_sym_class_modifier_token2] = ACTIONS(1313), - [aux_sym_visibility_modifier_token1] = ACTIONS(1313), - [aux_sym_visibility_modifier_token2] = ACTIONS(1313), - [aux_sym_visibility_modifier_token3] = ACTIONS(1313), - [aux_sym_arrow_function_token1] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_array] = ACTIONS(1313), - [anon_sym_unset] = ACTIONS(1313), - [aux_sym_echo_statement_token1] = ACTIONS(1313), - [anon_sym_declare] = ACTIONS(1313), - [aux_sym_declare_statement_token1] = ACTIONS(1313), - [sym_float] = ACTIONS(1313), - [aux_sym_try_statement_token1] = ACTIONS(1313), - [aux_sym_goto_statement_token1] = ACTIONS(1313), - [aux_sym_continue_statement_token1] = ACTIONS(1313), - [aux_sym_break_statement_token1] = ACTIONS(1313), - [sym_integer] = ACTIONS(1313), - [aux_sym_return_statement_token1] = ACTIONS(1313), - [aux_sym_throw_expression_token1] = ACTIONS(1313), - [aux_sym_while_statement_token1] = ACTIONS(1313), - [aux_sym_while_statement_token2] = ACTIONS(1313), - [aux_sym_do_statement_token1] = ACTIONS(1313), - [aux_sym_for_statement_token1] = ACTIONS(1313), - [aux_sym_for_statement_token2] = ACTIONS(1313), - [aux_sym_foreach_statement_token1] = ACTIONS(1313), - [aux_sym_foreach_statement_token2] = ACTIONS(1313), - [aux_sym_if_statement_token1] = ACTIONS(1313), - [aux_sym_if_statement_token2] = ACTIONS(1313), - [aux_sym_else_if_clause_token1] = ACTIONS(1313), - [aux_sym_else_clause_token1] = ACTIONS(1313), - [aux_sym_match_expression_token1] = ACTIONS(1313), - [aux_sym_match_default_expression_token1] = ACTIONS(1313), - [aux_sym_switch_statement_token1] = ACTIONS(1313), - [aux_sym_switch_block_token1] = ACTIONS(1313), - [aux_sym_case_statement_token1] = ACTIONS(1313), - [anon_sym_AT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_clone] = ACTIONS(1313), - [anon_sym_print] = ACTIONS(1313), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [sym_shell_command_expression] = ACTIONS(1311), - [anon_sym_list] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_self] = ACTIONS(1313), - [anon_sym_parent] = ACTIONS(1313), - [anon_sym_POUND_LBRACK] = ACTIONS(1311), - [sym_string] = ACTIONS(1311), - [sym_boolean] = ACTIONS(1313), - [sym_null] = ACTIONS(1313), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_yield] = ACTIONS(1313), - [aux_sym_include_expression_token1] = ACTIONS(1313), - [aux_sym_include_once_expression_token1] = ACTIONS(1313), - [aux_sym_require_expression_token1] = ACTIONS(1313), - [aux_sym_require_once_expression_token1] = ACTIONS(1313), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_name] = ACTIONS(1318), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1316), + [aux_sym_function_static_declaration_token1] = ACTIONS(1318), + [aux_sym_global_declaration_token1] = ACTIONS(1318), + [aux_sym_namespace_definition_token1] = ACTIONS(1318), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1318), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1318), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1318), + [anon_sym_BSLASH] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [aux_sym_trait_declaration_token1] = ACTIONS(1318), + [aux_sym_interface_declaration_token1] = ACTIONS(1318), + [aux_sym_class_declaration_token1] = ACTIONS(1318), + [aux_sym_final_modifier_token1] = ACTIONS(1318), + [aux_sym_abstract_modifier_token1] = ACTIONS(1318), + [aux_sym_visibility_modifier_token1] = ACTIONS(1318), + [aux_sym_visibility_modifier_token2] = ACTIONS(1318), + [aux_sym_visibility_modifier_token3] = ACTIONS(1318), + [aux_sym_arrow_function_token1] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_array] = ACTIONS(1318), + [anon_sym_unset] = ACTIONS(1318), + [aux_sym_echo_statement_token1] = ACTIONS(1318), + [anon_sym_declare] = ACTIONS(1318), + [aux_sym_declare_statement_token1] = ACTIONS(1318), + [sym_float] = ACTIONS(1318), + [aux_sym_try_statement_token1] = ACTIONS(1318), + [aux_sym_goto_statement_token1] = ACTIONS(1318), + [aux_sym_continue_statement_token1] = ACTIONS(1318), + [aux_sym_break_statement_token1] = ACTIONS(1318), + [sym_integer] = ACTIONS(1318), + [aux_sym_return_statement_token1] = ACTIONS(1318), + [aux_sym_throw_expression_token1] = ACTIONS(1318), + [aux_sym_while_statement_token1] = ACTIONS(1318), + [aux_sym_while_statement_token2] = ACTIONS(1318), + [aux_sym_do_statement_token1] = ACTIONS(1318), + [aux_sym_for_statement_token1] = ACTIONS(1318), + [aux_sym_for_statement_token2] = ACTIONS(1318), + [aux_sym_foreach_statement_token1] = ACTIONS(1318), + [aux_sym_foreach_statement_token2] = ACTIONS(1318), + [aux_sym_if_statement_token1] = ACTIONS(1318), + [aux_sym_if_statement_token2] = ACTIONS(1318), + [aux_sym_else_if_clause_token1] = ACTIONS(1318), + [aux_sym_else_clause_token1] = ACTIONS(1318), + [aux_sym_match_expression_token1] = ACTIONS(1318), + [aux_sym_match_default_expression_token1] = ACTIONS(1318), + [aux_sym_switch_statement_token1] = ACTIONS(1318), + [aux_sym_switch_block_token1] = ACTIONS(1318), + [aux_sym_case_statement_token1] = ACTIONS(1318), + [anon_sym_AT] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_clone] = ACTIONS(1318), + [anon_sym_print] = ACTIONS(1318), + [anon_sym_new] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [sym_shell_command_expression] = ACTIONS(1316), + [anon_sym_list] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_self] = ACTIONS(1318), + [anon_sym_parent] = ACTIONS(1318), + [anon_sym_POUND_LBRACK] = ACTIONS(1316), + [sym_string] = ACTIONS(1316), + [sym_boolean] = ACTIONS(1318), + [sym_null] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [aux_sym_include_expression_token1] = ACTIONS(1318), + [aux_sym_include_once_expression_token1] = ACTIONS(1318), + [aux_sym_require_expression_token1] = ACTIONS(1318), + [aux_sym_require_once_expression_token1] = ACTIONS(1318), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1311), + [sym_heredoc] = ACTIONS(1316), }, [521] = { [sym_text_interpolation] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1315), - [sym_name] = ACTIONS(1317), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1315), - [aux_sym_function_static_declaration_token1] = ACTIONS(1317), - [aux_sym_global_declaration_token1] = ACTIONS(1317), - [aux_sym_namespace_definition_token1] = ACTIONS(1317), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1317), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1317), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1317), - [anon_sym_BSLASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [aux_sym_trait_declaration_token1] = ACTIONS(1317), - [aux_sym_interface_declaration_token1] = ACTIONS(1317), - [aux_sym_class_declaration_token1] = ACTIONS(1317), - [aux_sym_class_modifier_token1] = ACTIONS(1317), - [aux_sym_class_modifier_token2] = ACTIONS(1317), - [aux_sym_visibility_modifier_token1] = ACTIONS(1317), - [aux_sym_visibility_modifier_token2] = ACTIONS(1317), - [aux_sym_visibility_modifier_token3] = ACTIONS(1317), - [aux_sym_arrow_function_token1] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_array] = ACTIONS(1317), - [anon_sym_unset] = ACTIONS(1317), - [aux_sym_echo_statement_token1] = ACTIONS(1317), - [anon_sym_declare] = ACTIONS(1317), - [aux_sym_declare_statement_token1] = ACTIONS(1317), - [sym_float] = ACTIONS(1317), - [aux_sym_try_statement_token1] = ACTIONS(1317), - [aux_sym_goto_statement_token1] = ACTIONS(1317), - [aux_sym_continue_statement_token1] = ACTIONS(1317), - [aux_sym_break_statement_token1] = ACTIONS(1317), - [sym_integer] = ACTIONS(1317), - [aux_sym_return_statement_token1] = ACTIONS(1317), - [aux_sym_throw_expression_token1] = ACTIONS(1317), - [aux_sym_while_statement_token1] = ACTIONS(1317), - [aux_sym_while_statement_token2] = ACTIONS(1317), - [aux_sym_do_statement_token1] = ACTIONS(1317), - [aux_sym_for_statement_token1] = ACTIONS(1317), - [aux_sym_for_statement_token2] = ACTIONS(1317), - [aux_sym_foreach_statement_token1] = ACTIONS(1317), - [aux_sym_foreach_statement_token2] = ACTIONS(1317), - [aux_sym_if_statement_token1] = ACTIONS(1317), - [aux_sym_if_statement_token2] = ACTIONS(1317), - [aux_sym_else_if_clause_token1] = ACTIONS(1317), - [aux_sym_else_clause_token1] = ACTIONS(1317), - [aux_sym_match_expression_token1] = ACTIONS(1317), - [aux_sym_match_default_expression_token1] = ACTIONS(1317), - [aux_sym_switch_statement_token1] = ACTIONS(1317), - [aux_sym_switch_block_token1] = ACTIONS(1317), - [aux_sym_case_statement_token1] = ACTIONS(1317), - [anon_sym_AT] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_clone] = ACTIONS(1317), - [anon_sym_print] = ACTIONS(1317), - [anon_sym_new] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [sym_shell_command_expression] = ACTIONS(1315), - [anon_sym_list] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_self] = ACTIONS(1317), - [anon_sym_parent] = ACTIONS(1317), - [anon_sym_POUND_LBRACK] = ACTIONS(1315), - [sym_string] = ACTIONS(1315), - [sym_boolean] = ACTIONS(1317), - [sym_null] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(1317), - [aux_sym_include_expression_token1] = ACTIONS(1317), - [aux_sym_include_once_expression_token1] = ACTIONS(1317), - [aux_sym_require_expression_token1] = ACTIONS(1317), - [aux_sym_require_once_expression_token1] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_name] = ACTIONS(1322), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1320), + [aux_sym_function_static_declaration_token1] = ACTIONS(1322), + [aux_sym_global_declaration_token1] = ACTIONS(1322), + [aux_sym_namespace_definition_token1] = ACTIONS(1322), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1322), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1322), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [aux_sym_trait_declaration_token1] = ACTIONS(1322), + [aux_sym_interface_declaration_token1] = ACTIONS(1322), + [aux_sym_class_declaration_token1] = ACTIONS(1322), + [aux_sym_final_modifier_token1] = ACTIONS(1322), + [aux_sym_abstract_modifier_token1] = ACTIONS(1322), + [aux_sym_visibility_modifier_token1] = ACTIONS(1322), + [aux_sym_visibility_modifier_token2] = ACTIONS(1322), + [aux_sym_visibility_modifier_token3] = ACTIONS(1322), + [aux_sym_arrow_function_token1] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_array] = ACTIONS(1322), + [anon_sym_unset] = ACTIONS(1322), + [aux_sym_echo_statement_token1] = ACTIONS(1322), + [anon_sym_declare] = ACTIONS(1322), + [aux_sym_declare_statement_token1] = ACTIONS(1322), + [sym_float] = ACTIONS(1322), + [aux_sym_try_statement_token1] = ACTIONS(1322), + [aux_sym_goto_statement_token1] = ACTIONS(1322), + [aux_sym_continue_statement_token1] = ACTIONS(1322), + [aux_sym_break_statement_token1] = ACTIONS(1322), + [sym_integer] = ACTIONS(1322), + [aux_sym_return_statement_token1] = ACTIONS(1322), + [aux_sym_throw_expression_token1] = ACTIONS(1322), + [aux_sym_while_statement_token1] = ACTIONS(1322), + [aux_sym_while_statement_token2] = ACTIONS(1322), + [aux_sym_do_statement_token1] = ACTIONS(1322), + [aux_sym_for_statement_token1] = ACTIONS(1322), + [aux_sym_for_statement_token2] = ACTIONS(1322), + [aux_sym_foreach_statement_token1] = ACTIONS(1322), + [aux_sym_foreach_statement_token2] = ACTIONS(1322), + [aux_sym_if_statement_token1] = ACTIONS(1322), + [aux_sym_if_statement_token2] = ACTIONS(1322), + [aux_sym_else_if_clause_token1] = ACTIONS(1322), + [aux_sym_else_clause_token1] = ACTIONS(1322), + [aux_sym_match_expression_token1] = ACTIONS(1322), + [aux_sym_match_default_expression_token1] = ACTIONS(1322), + [aux_sym_switch_statement_token1] = ACTIONS(1322), + [aux_sym_switch_block_token1] = ACTIONS(1322), + [aux_sym_case_statement_token1] = ACTIONS(1322), + [anon_sym_AT] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_clone] = ACTIONS(1322), + [anon_sym_print] = ACTIONS(1322), + [anon_sym_new] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [sym_shell_command_expression] = ACTIONS(1320), + [anon_sym_list] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_self] = ACTIONS(1322), + [anon_sym_parent] = ACTIONS(1322), + [anon_sym_POUND_LBRACK] = ACTIONS(1320), + [sym_string] = ACTIONS(1320), + [sym_boolean] = ACTIONS(1322), + [sym_null] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [aux_sym_include_expression_token1] = ACTIONS(1322), + [aux_sym_include_once_expression_token1] = ACTIONS(1322), + [aux_sym_require_expression_token1] = ACTIONS(1322), + [aux_sym_require_once_expression_token1] = ACTIONS(1322), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1315), + [sym_heredoc] = ACTIONS(1320), }, [522] = { [sym_text_interpolation] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1319), - [sym_name] = ACTIONS(1321), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1319), - [aux_sym_function_static_declaration_token1] = ACTIONS(1321), - [aux_sym_global_declaration_token1] = ACTIONS(1321), - [aux_sym_namespace_definition_token1] = ACTIONS(1321), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1321), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1321), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [aux_sym_trait_declaration_token1] = ACTIONS(1321), - [aux_sym_interface_declaration_token1] = ACTIONS(1321), - [aux_sym_class_declaration_token1] = ACTIONS(1321), - [aux_sym_class_modifier_token1] = ACTIONS(1321), - [aux_sym_class_modifier_token2] = ACTIONS(1321), - [aux_sym_visibility_modifier_token1] = ACTIONS(1321), - [aux_sym_visibility_modifier_token2] = ACTIONS(1321), - [aux_sym_visibility_modifier_token3] = ACTIONS(1321), - [aux_sym_arrow_function_token1] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_array] = ACTIONS(1321), - [anon_sym_unset] = ACTIONS(1321), - [aux_sym_echo_statement_token1] = ACTIONS(1321), - [anon_sym_declare] = ACTIONS(1321), - [aux_sym_declare_statement_token1] = ACTIONS(1321), - [sym_float] = ACTIONS(1321), - [aux_sym_try_statement_token1] = ACTIONS(1321), - [aux_sym_goto_statement_token1] = ACTIONS(1321), - [aux_sym_continue_statement_token1] = ACTIONS(1321), - [aux_sym_break_statement_token1] = ACTIONS(1321), - [sym_integer] = ACTIONS(1321), - [aux_sym_return_statement_token1] = ACTIONS(1321), - [aux_sym_throw_expression_token1] = ACTIONS(1321), - [aux_sym_while_statement_token1] = ACTIONS(1321), - [aux_sym_while_statement_token2] = ACTIONS(1321), - [aux_sym_do_statement_token1] = ACTIONS(1321), - [aux_sym_for_statement_token1] = ACTIONS(1321), - [aux_sym_for_statement_token2] = ACTIONS(1321), - [aux_sym_foreach_statement_token1] = ACTIONS(1321), - [aux_sym_foreach_statement_token2] = ACTIONS(1321), - [aux_sym_if_statement_token1] = ACTIONS(1321), - [aux_sym_if_statement_token2] = ACTIONS(1321), - [aux_sym_else_if_clause_token1] = ACTIONS(1321), - [aux_sym_else_clause_token1] = ACTIONS(1321), - [aux_sym_match_expression_token1] = ACTIONS(1321), - [aux_sym_match_default_expression_token1] = ACTIONS(1321), - [aux_sym_switch_statement_token1] = ACTIONS(1321), - [aux_sym_switch_block_token1] = ACTIONS(1321), - [aux_sym_case_statement_token1] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_clone] = ACTIONS(1321), - [anon_sym_print] = ACTIONS(1321), - [anon_sym_new] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [sym_shell_command_expression] = ACTIONS(1319), - [anon_sym_list] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_self] = ACTIONS(1321), - [anon_sym_parent] = ACTIONS(1321), - [anon_sym_POUND_LBRACK] = ACTIONS(1319), - [sym_string] = ACTIONS(1319), - [sym_boolean] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(1321), - [aux_sym_include_expression_token1] = ACTIONS(1321), - [aux_sym_include_once_expression_token1] = ACTIONS(1321), - [aux_sym_require_expression_token1] = ACTIONS(1321), - [aux_sym_require_once_expression_token1] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_name] = ACTIONS(1326), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1324), + [aux_sym_function_static_declaration_token1] = ACTIONS(1326), + [aux_sym_global_declaration_token1] = ACTIONS(1326), + [aux_sym_namespace_definition_token1] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1326), + [anon_sym_BSLASH] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [aux_sym_trait_declaration_token1] = ACTIONS(1326), + [aux_sym_interface_declaration_token1] = ACTIONS(1326), + [aux_sym_class_declaration_token1] = ACTIONS(1326), + [aux_sym_final_modifier_token1] = ACTIONS(1326), + [aux_sym_abstract_modifier_token1] = ACTIONS(1326), + [aux_sym_visibility_modifier_token1] = ACTIONS(1326), + [aux_sym_visibility_modifier_token2] = ACTIONS(1326), + [aux_sym_visibility_modifier_token3] = ACTIONS(1326), + [aux_sym_arrow_function_token1] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_array] = ACTIONS(1326), + [anon_sym_unset] = ACTIONS(1326), + [aux_sym_echo_statement_token1] = ACTIONS(1326), + [anon_sym_declare] = ACTIONS(1326), + [aux_sym_declare_statement_token1] = ACTIONS(1326), + [sym_float] = ACTIONS(1326), + [aux_sym_try_statement_token1] = ACTIONS(1326), + [aux_sym_goto_statement_token1] = ACTIONS(1326), + [aux_sym_continue_statement_token1] = ACTIONS(1326), + [aux_sym_break_statement_token1] = ACTIONS(1326), + [sym_integer] = ACTIONS(1326), + [aux_sym_return_statement_token1] = ACTIONS(1326), + [aux_sym_throw_expression_token1] = ACTIONS(1326), + [aux_sym_while_statement_token1] = ACTIONS(1326), + [aux_sym_while_statement_token2] = ACTIONS(1326), + [aux_sym_do_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token2] = ACTIONS(1326), + [aux_sym_foreach_statement_token1] = ACTIONS(1326), + [aux_sym_foreach_statement_token2] = ACTIONS(1326), + [aux_sym_if_statement_token1] = ACTIONS(1326), + [aux_sym_if_statement_token2] = ACTIONS(1326), + [aux_sym_else_if_clause_token1] = ACTIONS(1326), + [aux_sym_else_clause_token1] = ACTIONS(1326), + [aux_sym_match_expression_token1] = ACTIONS(1326), + [aux_sym_match_default_expression_token1] = ACTIONS(1326), + [aux_sym_switch_statement_token1] = ACTIONS(1326), + [aux_sym_switch_block_token1] = ACTIONS(1326), + [aux_sym_case_statement_token1] = ACTIONS(1326), + [anon_sym_AT] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_clone] = ACTIONS(1326), + [anon_sym_print] = ACTIONS(1326), + [anon_sym_new] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [sym_shell_command_expression] = ACTIONS(1324), + [anon_sym_list] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_self] = ACTIONS(1326), + [anon_sym_parent] = ACTIONS(1326), + [anon_sym_POUND_LBRACK] = ACTIONS(1324), + [sym_string] = ACTIONS(1324), + [sym_boolean] = ACTIONS(1326), + [sym_null] = ACTIONS(1326), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_yield] = ACTIONS(1326), + [aux_sym_include_expression_token1] = ACTIONS(1326), + [aux_sym_include_once_expression_token1] = ACTIONS(1326), + [aux_sym_require_expression_token1] = ACTIONS(1326), + [aux_sym_require_once_expression_token1] = ACTIONS(1326), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1319), + [sym_heredoc] = ACTIONS(1324), }, [523] = { [sym_text_interpolation] = STATE(523), - [sym_name] = ACTIONS(1323), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1325), - [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(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [aux_sym_trait_declaration_token1] = ACTIONS(1323), - [aux_sym_interface_declaration_token1] = ACTIONS(1323), - [aux_sym_class_declaration_token1] = ACTIONS(1323), - [aux_sym_class_modifier_token1] = ACTIONS(1323), - [aux_sym_class_modifier_token2] = 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(1325), - [anon_sym_array] = ACTIONS(1323), - [anon_sym_unset] = ACTIONS(1323), - [anon_sym_COLON] = ACTIONS(1325), - [aux_sym_echo_statement_token1] = ACTIONS(1323), - [anon_sym_declare] = 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_do_statement_token1] = ACTIONS(1323), - [aux_sym_for_statement_token1] = ACTIONS(1323), - [aux_sym_foreach_statement_token1] = ACTIONS(1323), - [aux_sym_if_statement_token1] = ACTIONS(1323), - [aux_sym_match_expression_token1] = ACTIONS(1323), - [aux_sym_switch_statement_token1] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_clone] = ACTIONS(1323), - [anon_sym_print] = ACTIONS(1323), - [anon_sym_new] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [sym_shell_command_expression] = ACTIONS(1325), - [anon_sym_list] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_self] = ACTIONS(1323), - [anon_sym_parent] = ACTIONS(1323), - [anon_sym_POUND_LBRACK] = ACTIONS(1325), - [sym_string] = ACTIONS(1325), - [sym_boolean] = ACTIONS(1323), - [sym_null] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_yield] = 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_name] = ACTIONS(1328), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1330), + [aux_sym_function_static_declaration_token1] = ACTIONS(1328), + [aux_sym_global_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_definition_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1328), + [anon_sym_BSLASH] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [aux_sym_trait_declaration_token1] = ACTIONS(1328), + [aux_sym_interface_declaration_token1] = ACTIONS(1328), + [aux_sym_class_declaration_token1] = ACTIONS(1328), + [aux_sym_final_modifier_token1] = ACTIONS(1328), + [aux_sym_abstract_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token2] = ACTIONS(1328), + [aux_sym_visibility_modifier_token3] = ACTIONS(1328), + [aux_sym_arrow_function_token1] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_array] = ACTIONS(1328), + [anon_sym_unset] = ACTIONS(1328), + [anon_sym_COLON] = ACTIONS(1330), + [aux_sym_echo_statement_token1] = ACTIONS(1328), + [anon_sym_declare] = ACTIONS(1328), + [sym_float] = ACTIONS(1328), + [aux_sym_try_statement_token1] = ACTIONS(1328), + [aux_sym_goto_statement_token1] = ACTIONS(1328), + [aux_sym_continue_statement_token1] = ACTIONS(1328), + [aux_sym_break_statement_token1] = ACTIONS(1328), + [sym_integer] = ACTIONS(1328), + [aux_sym_return_statement_token1] = ACTIONS(1328), + [aux_sym_throw_expression_token1] = ACTIONS(1328), + [aux_sym_while_statement_token1] = ACTIONS(1328), + [aux_sym_do_statement_token1] = ACTIONS(1328), + [aux_sym_for_statement_token1] = ACTIONS(1328), + [aux_sym_foreach_statement_token1] = ACTIONS(1328), + [aux_sym_if_statement_token1] = ACTIONS(1328), + [aux_sym_match_expression_token1] = ACTIONS(1328), + [aux_sym_switch_statement_token1] = ACTIONS(1328), + [anon_sym_AT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_clone] = ACTIONS(1328), + [anon_sym_print] = ACTIONS(1328), + [anon_sym_new] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [sym_shell_command_expression] = ACTIONS(1330), + [anon_sym_list] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_self] = ACTIONS(1328), + [anon_sym_parent] = ACTIONS(1328), + [anon_sym_POUND_LBRACK] = ACTIONS(1330), + [sym_string] = ACTIONS(1330), + [sym_boolean] = ACTIONS(1328), + [sym_null] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1330), + [anon_sym_yield] = ACTIONS(1328), + [aux_sym_include_expression_token1] = ACTIONS(1328), + [aux_sym_include_once_expression_token1] = ACTIONS(1328), + [aux_sym_require_expression_token1] = ACTIONS(1328), + [aux_sym_require_once_expression_token1] = ACTIONS(1328), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1325), + [sym_heredoc] = ACTIONS(1330), }, [524] = { [sym_text_interpolation] = STATE(524), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__unary_expression] = STATE(749), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2054), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__unary_expression] = STATE(780), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(833), + [sym__primary_expression] = STATE(833), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(552), [sym_member_access_expression] = STATE(552), [sym_nullsafe_member_access_expression] = STATE(552), [sym_scoped_property_access_expression] = STATE(552), - [sym_function_call_expression] = STATE(535), - [sym_scoped_call_expression] = STATE(535), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(535), - [sym_nullsafe_member_call_expression] = STATE(535), - [sym_subscript_expression] = STATE(535), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(535), - [sym_variable_name] = STATE(535), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_function_call_expression] = STATE(533), + [sym_scoped_call_expression] = STATE(533), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(533), + [sym_nullsafe_member_call_expression] = STATE(533), + [sym_subscript_expression] = STATE(533), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(533), + [sym_variable_name] = STATE(533), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_clone] = ACTIONS(613), + [anon_sym_print] = ACTIONS(615), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [525] = { [sym_text_interpolation] = STATE(525), - [sym_qualified_name] = STATE(699), - [sym_namespace_name_as_prefix] = STATE(1989), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1984), - [sym_arrow_function] = STATE(936), - [sym_throw_expression] = STATE(936), - [sym__unary_expression] = STATE(874), - [sym_unary_op_expression] = STATE(873), - [sym_exponentiation_expression] = STATE(873), - [sym_clone_expression] = STATE(946), - [sym__primary_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(745), - [sym_print_intrinsic] = STATE(936), - [sym_anonymous_function_creation_expression] = STATE(936), - [sym_object_creation_expression] = STATE(936), - [sym_update_expression] = STATE(936), - [sym_cast_expression] = STATE(873), - [sym_cast_variable] = STATE(590), - [sym_member_access_expression] = STATE(590), - [sym_nullsafe_member_access_expression] = STATE(590), - [sym_scoped_property_access_expression] = STATE(590), - [sym_function_call_expression] = STATE(556), - [sym_scoped_call_expression] = STATE(556), - [sym__scope_resolution_qualifier] = STATE(1946), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(556), - [sym_nullsafe_member_call_expression] = STATE(556), - [sym_subscript_expression] = STATE(556), - [sym__dereferencable_expression] = STATE(1310), - [sym_array_creation_expression] = STATE(683), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(556), - [sym_variable_name] = STATE(556), - [sym__reserved_identifier] = STATE(1236), - [sym_name] = ACTIONS(626), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(628), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(630), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_array] = ACTIONS(217), - [sym_float] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [aux_sym_throw_expression_token1] = ACTIONS(237), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_clone] = ACTIONS(261), - [anon_sym_print] = ACTIONS(263), - [anon_sym_new] = ACTIONS(265), - [anon_sym_PLUS_PLUS] = ACTIONS(267), - [anon_sym_DASH_DASH] = ACTIONS(267), - [sym_shell_command_expression] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(279), - [sym_boolean] = ACTIONS(225), - [sym_null] = ACTIONS(225), - [anon_sym_DOLLAR] = ACTIONS(281), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(279), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__unary_expression] = STATE(780), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), + [sym_cast_variable] = STATE(591), + [sym_member_access_expression] = STATE(591), + [sym_nullsafe_member_access_expression] = STATE(591), + [sym_scoped_property_access_expression] = STATE(591), + [sym_function_call_expression] = STATE(558), + [sym_scoped_call_expression] = STATE(558), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(558), + [sym_nullsafe_member_call_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(558), + [sym_variable_name] = STATE(558), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [526] = { [sym_text_interpolation] = STATE(526), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(1999), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__unary_expression] = STATE(749), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(819), - [sym__primary_expression] = STATE(819), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), - [sym_cast_variable] = STATE(593), - [sym_member_access_expression] = STATE(593), - [sym_nullsafe_member_access_expression] = STATE(593), - [sym_scoped_property_access_expression] = STATE(593), - [sym_function_call_expression] = STATE(560), - [sym_scoped_call_expression] = STATE(560), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(560), - [sym_nullsafe_member_call_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(560), - [sym_variable_name] = STATE(560), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(758), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_clone] = ACTIONS(562), - [anon_sym_print] = ACTIONS(564), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_qualified_name] = STATE(692), + [sym_namespace_name_as_prefix] = STATE(1993), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(1977), + [sym_arrow_function] = STATE(932), + [sym_throw_expression] = STATE(932), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(881), + [sym_exponentiation_expression] = STATE(881), + [sym_clone_expression] = STATE(890), + [sym__primary_expression] = STATE(890), + [sym_parenthesized_expression] = STATE(699), + [sym_class_constant_access_expression] = STATE(743), + [sym_print_intrinsic] = STATE(932), + [sym_anonymous_function_creation_expression] = STATE(932), + [sym_object_creation_expression] = STATE(932), + [sym_update_expression] = STATE(932), + [sym_cast_expression] = STATE(881), + [sym_cast_variable] = STATE(594), + [sym_member_access_expression] = STATE(594), + [sym_nullsafe_member_access_expression] = STATE(594), + [sym_scoped_property_access_expression] = STATE(594), + [sym_function_call_expression] = STATE(565), + [sym_scoped_call_expression] = STATE(565), + [sym__scope_resolution_qualifier] = STATE(2032), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(565), + [sym_nullsafe_member_call_expression] = STATE(565), + [sym_subscript_expression] = STATE(565), + [sym__dereferencable_expression] = STATE(1324), + [sym_array_creation_expression] = STATE(699), + [sym__string] = STATE(699), + [sym_dynamic_variable_name] = STATE(565), + [sym_variable_name] = STATE(565), + [sym__reserved_identifier] = STATE(1249), + [sym_name] = ACTIONS(631), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(633), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_array] = ACTIONS(222), + [sym_float] = ACTIONS(230), + [sym_integer] = ACTIONS(230), + [aux_sym_throw_expression_token1] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(264), + [anon_sym_BANG] = ACTIONS(264), + [anon_sym_clone] = ACTIONS(266), + [anon_sym_print] = ACTIONS(268), + [anon_sym_new] = ACTIONS(270), + [anon_sym_PLUS_PLUS] = ACTIONS(272), + [anon_sym_DASH_DASH] = ACTIONS(272), + [sym_shell_command_expression] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(284), + [sym_boolean] = ACTIONS(230), + [sym_null] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(286), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(284), }, [527] = { [sym_text_interpolation] = STATE(527), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2074), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__unary_expression] = STATE(749), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(994), - [sym__primary_expression] = STATE(994), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2080), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__unary_expression] = STATE(780), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(965), + [sym__primary_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(552), [sym_member_access_expression] = STATE(552), [sym_nullsafe_member_access_expression] = STATE(552), [sym_scoped_property_access_expression] = STATE(552), - [sym_function_call_expression] = STATE(535), - [sym_scoped_call_expression] = STATE(535), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(535), - [sym_nullsafe_member_call_expression] = STATE(535), - [sym_subscript_expression] = STATE(535), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(535), - [sym_variable_name] = STATE(535), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(646), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_clone] = ACTIONS(654), - [anon_sym_print] = ACTIONS(656), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_function_call_expression] = STATE(533), + [sym_scoped_call_expression] = STATE(533), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(533), + [sym_nullsafe_member_call_expression] = STATE(533), + [sym_subscript_expression] = STATE(533), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(533), + [sym_variable_name] = STATE(533), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(651), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_clone] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [528] = { [sym_text_interpolation] = STATE(528), - [sym_qualified_name] = STATE(627), - [sym_namespace_name_as_prefix] = STATE(2034), - [sym_namespace_name] = STATE(1988), - [sym_static_modifier] = STATE(2049), - [sym_arrow_function] = STATE(771), - [sym_throw_expression] = STATE(771), - [sym__unary_expression] = STATE(749), - [sym_unary_op_expression] = STATE(757), - [sym_exponentiation_expression] = STATE(757), - [sym_clone_expression] = STATE(860), - [sym__primary_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(630), - [sym_class_constant_access_expression] = STATE(673), - [sym_print_intrinsic] = STATE(771), - [sym_anonymous_function_creation_expression] = STATE(771), - [sym_object_creation_expression] = STATE(771), - [sym_update_expression] = STATE(771), - [sym_cast_expression] = STATE(757), + [sym_qualified_name] = STATE(614), + [sym_namespace_name_as_prefix] = STATE(2097), + [sym_namespace_name] = STATE(1991), + [sym_static_modifier] = STATE(2004), + [sym_arrow_function] = STATE(769), + [sym_throw_expression] = STATE(769), + [sym__unary_expression] = STATE(780), + [sym_unary_op_expression] = STATE(767), + [sym_exponentiation_expression] = STATE(767), + [sym_clone_expression] = STATE(822), + [sym__primary_expression] = STATE(822), + [sym_parenthesized_expression] = STATE(613), + [sym_class_constant_access_expression] = STATE(670), + [sym_print_intrinsic] = STATE(769), + [sym_anonymous_function_creation_expression] = STATE(769), + [sym_object_creation_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(767), [sym_cast_variable] = STATE(552), [sym_member_access_expression] = STATE(552), [sym_nullsafe_member_access_expression] = STATE(552), [sym_scoped_property_access_expression] = STATE(552), - [sym_function_call_expression] = STATE(535), - [sym_scoped_call_expression] = STATE(535), - [sym__scope_resolution_qualifier] = STATE(2012), - [sym_relative_scope] = STATE(1947), - [sym_member_call_expression] = STATE(535), - [sym_nullsafe_member_call_expression] = STATE(535), - [sym_subscript_expression] = STATE(535), - [sym__dereferencable_expression] = STATE(1349), - [sym_array_creation_expression] = STATE(630), - [sym__string] = STATE(630), - [sym_dynamic_variable_name] = STATE(535), - [sym_variable_name] = STATE(535), - [sym__reserved_identifier] = STATE(1247), - [sym_name] = ACTIONS(528), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(532), - [aux_sym_namespace_definition_token1] = ACTIONS(534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), - [anon_sym_BSLASH] = ACTIONS(197), - [aux_sym_arrow_function_token1] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_array] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_integer] = ACTIONS(550), - [aux_sym_throw_expression_token1] = ACTIONS(600), - [anon_sym_AT] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_clone] = ACTIONS(608), - [anon_sym_print] = ACTIONS(610), - [anon_sym_new] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(568), - [sym_shell_command_expression] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_self] = ACTIONS(275), - [anon_sym_parent] = ACTIONS(275), - [sym_string] = ACTIONS(574), - [sym_boolean] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(576), - [sym_comment] = ACTIONS(590), - [sym_heredoc] = ACTIONS(574), + [sym_function_call_expression] = STATE(533), + [sym_scoped_call_expression] = STATE(533), + [sym__scope_resolution_qualifier] = STATE(2075), + [sym_relative_scope] = STATE(1949), + [sym_member_call_expression] = STATE(533), + [sym_nullsafe_member_call_expression] = STATE(533), + [sym_subscript_expression] = STATE(533), + [sym__dereferencable_expression] = STATE(1368), + [sym_array_creation_expression] = STATE(613), + [sym__string] = STATE(613), + [sym_dynamic_variable_name] = STATE(533), + [sym_variable_name] = STATE(533), + [sym__reserved_identifier] = STATE(1243), + [sym_name] = ACTIONS(533), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(537), + [aux_sym_namespace_definition_token1] = ACTIONS(539), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(541), + [anon_sym_BSLASH] = ACTIONS(200), + [aux_sym_arrow_function_token1] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_array] = ACTIONS(553), + [sym_float] = ACTIONS(555), + [sym_integer] = ACTIONS(555), + [aux_sym_throw_expression_token1] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_clone] = ACTIONS(567), + [anon_sym_print] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_shell_command_expression] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_self] = ACTIONS(280), + [anon_sym_parent] = ACTIONS(280), + [sym_string] = ACTIONS(579), + [sym_boolean] = ACTIONS(555), + [sym_null] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(581), + [sym_comment] = ACTIONS(595), + [sym_heredoc] = ACTIONS(579), }, [529] = { [sym_text_interpolation] = STATE(529), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1333), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [aux_sym_base_clause_token1] = ACTIONS(1331), - [aux_sym_class_interface_clause_token1] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_EQ_GT] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_COLON] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_STAR_STAR] = ACTIONS(1333), - [anon_sym_COLON_COLON] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1331), - [anon_sym_STAR_EQ] = ACTIONS(1331), - [anon_sym_SLASH_EQ] = ACTIONS(1331), - [anon_sym_PERCENT_EQ] = ACTIONS(1331), - [anon_sym_PLUS_EQ] = ACTIONS(1331), - [anon_sym_DASH_EQ] = ACTIONS(1331), - [anon_sym_DOT_EQ] = ACTIONS(1331), - [anon_sym_LT_LT_EQ] = ACTIONS(1331), - [anon_sym_GT_GT_EQ] = ACTIONS(1331), - [anon_sym_AMP_EQ] = ACTIONS(1331), - [anon_sym_CARET_EQ] = ACTIONS(1331), - [anon_sym_PIPE_EQ] = ACTIONS(1331), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1331), - [anon_sym_DASH_GT] = ACTIONS(1331), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_RBRACK] = ACTIONS(1331), - [aux_sym_binary_expression_token1] = ACTIONS(1331), - [anon_sym_QMARK_QMARK] = ACTIONS(1333), - [aux_sym_binary_expression_token2] = ACTIONS(1331), - [aux_sym_binary_expression_token3] = ACTIONS(1331), - [aux_sym_binary_expression_token4] = ACTIONS(1331), - [anon_sym_PIPE_PIPE] = ACTIONS(1331), - [anon_sym_AMP_AMP] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym_EQ_EQ] = ACTIONS(1333), - [anon_sym_BANG_EQ] = ACTIONS(1333), - [anon_sym_LT_GT] = ACTIONS(1331), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1333), - [anon_sym_GT_EQ] = ACTIONS(1331), - [anon_sym_LT_EQ_GT] = ACTIONS(1331), - [anon_sym_LT_LT] = ACTIONS(1333), - [anon_sym_GT_GT] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(1333), - [sym_comment] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1338), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [aux_sym_base_clause_token1] = ACTIONS(1336), + [aux_sym_class_interface_clause_token1] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_EQ_GT] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_COLON] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_STAR_STAR] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1336), + [anon_sym_STAR_EQ] = ACTIONS(1336), + [anon_sym_SLASH_EQ] = ACTIONS(1336), + [anon_sym_PERCENT_EQ] = ACTIONS(1336), + [anon_sym_PLUS_EQ] = ACTIONS(1336), + [anon_sym_DASH_EQ] = ACTIONS(1336), + [anon_sym_DOT_EQ] = ACTIONS(1336), + [anon_sym_LT_LT_EQ] = ACTIONS(1336), + [anon_sym_GT_GT_EQ] = ACTIONS(1336), + [anon_sym_AMP_EQ] = ACTIONS(1336), + [anon_sym_CARET_EQ] = ACTIONS(1336), + [anon_sym_PIPE_EQ] = ACTIONS(1336), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1336), + [anon_sym_RBRACK] = ACTIONS(1336), + [aux_sym_binary_expression_token1] = ACTIONS(1336), + [anon_sym_QMARK_QMARK] = ACTIONS(1338), + [aux_sym_binary_expression_token2] = ACTIONS(1336), + [aux_sym_binary_expression_token3] = ACTIONS(1336), + [aux_sym_binary_expression_token4] = ACTIONS(1336), + [anon_sym_PIPE_PIPE] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1338), + [anon_sym_EQ_EQ] = ACTIONS(1338), + [anon_sym_BANG_EQ] = ACTIONS(1338), + [anon_sym_LT_GT] = ACTIONS(1336), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1336), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1338), + [anon_sym_LT_EQ] = ACTIONS(1338), + [anon_sym_GT_EQ] = ACTIONS(1336), + [anon_sym_LT_EQ_GT] = ACTIONS(1336), + [anon_sym_LT_LT] = ACTIONS(1338), + [anon_sym_GT_GT] = ACTIONS(1338), + [anon_sym_DOT] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(1338), + [anon_sym_PERCENT] = ACTIONS(1338), + [sym_comment] = ACTIONS(595), }, [530] = { [sym_text_interpolation] = STATE(530), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_EQ] = ACTIONS(1337), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [aux_sym_base_clause_token1] = ACTIONS(1335), - [aux_sym_class_interface_clause_token1] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_EQ_GT] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_COLON] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_STAR_STAR] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1335), - [anon_sym_STAR_EQ] = ACTIONS(1335), - [anon_sym_SLASH_EQ] = ACTIONS(1335), - [anon_sym_PERCENT_EQ] = ACTIONS(1335), - [anon_sym_PLUS_EQ] = ACTIONS(1335), - [anon_sym_DASH_EQ] = ACTIONS(1335), - [anon_sym_DOT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_GT_EQ] = ACTIONS(1335), - [anon_sym_AMP_EQ] = ACTIONS(1335), - [anon_sym_CARET_EQ] = ACTIONS(1335), - [anon_sym_PIPE_EQ] = ACTIONS(1335), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1335), - [anon_sym_DASH_GT] = ACTIONS(1335), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_RBRACK] = ACTIONS(1335), - [aux_sym_binary_expression_token1] = ACTIONS(1335), - [anon_sym_QMARK_QMARK] = ACTIONS(1337), - [aux_sym_binary_expression_token2] = ACTIONS(1335), - [aux_sym_binary_expression_token3] = ACTIONS(1335), - [aux_sym_binary_expression_token4] = ACTIONS(1335), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_LT_GT] = ACTIONS(1335), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1335), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_LT_EQ] = ACTIONS(1337), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_EQ_GT] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [sym_comment] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_COMMA] = ACTIONS(1340), + [anon_sym_EQ] = ACTIONS(1342), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [aux_sym_base_clause_token1] = ACTIONS(1340), + [aux_sym_class_interface_clause_token1] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_EQ_GT] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_COLON] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_STAR_STAR] = ACTIONS(1342), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1340), + [anon_sym_STAR_EQ] = ACTIONS(1340), + [anon_sym_SLASH_EQ] = ACTIONS(1340), + [anon_sym_PERCENT_EQ] = ACTIONS(1340), + [anon_sym_PLUS_EQ] = ACTIONS(1340), + [anon_sym_DASH_EQ] = ACTIONS(1340), + [anon_sym_DOT_EQ] = ACTIONS(1340), + [anon_sym_LT_LT_EQ] = ACTIONS(1340), + [anon_sym_GT_GT_EQ] = ACTIONS(1340), + [anon_sym_AMP_EQ] = ACTIONS(1340), + [anon_sym_CARET_EQ] = ACTIONS(1340), + [anon_sym_PIPE_EQ] = ACTIONS(1340), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1340), + [anon_sym_DASH_GT] = ACTIONS(1340), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1340), + [aux_sym_binary_expression_token1] = ACTIONS(1340), + [anon_sym_QMARK_QMARK] = ACTIONS(1342), + [aux_sym_binary_expression_token2] = ACTIONS(1340), + [aux_sym_binary_expression_token3] = ACTIONS(1340), + [aux_sym_binary_expression_token4] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym_EQ_EQ] = ACTIONS(1342), + [anon_sym_BANG_EQ] = ACTIONS(1342), + [anon_sym_LT_GT] = ACTIONS(1340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1340), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_EQ] = ACTIONS(1340), + [anon_sym_LT_EQ_GT] = ACTIONS(1340), + [anon_sym_LT_LT] = ACTIONS(1342), + [anon_sym_GT_GT] = ACTIONS(1342), + [anon_sym_DOT] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [sym_comment] = ACTIONS(595), }, [531] = { [sym_text_interpolation] = STATE(531), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(1339), - [anon_sym_EQ] = ACTIONS(1341), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [aux_sym_base_clause_token1] = ACTIONS(1339), - [aux_sym_class_interface_clause_token1] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_EQ_GT] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1339), - [anon_sym_QMARK] = ACTIONS(1341), - [anon_sym_PIPE] = ACTIONS(1341), - [anon_sym_COLON] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_STAR_STAR] = ACTIONS(1341), - [anon_sym_COLON_COLON] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1339), - [anon_sym_STAR_EQ] = ACTIONS(1339), - [anon_sym_SLASH_EQ] = ACTIONS(1339), - [anon_sym_PERCENT_EQ] = ACTIONS(1339), - [anon_sym_PLUS_EQ] = ACTIONS(1339), - [anon_sym_DASH_EQ] = ACTIONS(1339), - [anon_sym_DOT_EQ] = ACTIONS(1339), - [anon_sym_LT_LT_EQ] = ACTIONS(1339), - [anon_sym_GT_GT_EQ] = ACTIONS(1339), - [anon_sym_AMP_EQ] = ACTIONS(1339), - [anon_sym_CARET_EQ] = ACTIONS(1339), - [anon_sym_PIPE_EQ] = ACTIONS(1339), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1339), - [anon_sym_DASH_GT] = ACTIONS(1339), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_RBRACK] = ACTIONS(1339), - [aux_sym_binary_expression_token1] = ACTIONS(1339), - [anon_sym_QMARK_QMARK] = ACTIONS(1341), - [aux_sym_binary_expression_token2] = ACTIONS(1339), - [aux_sym_binary_expression_token3] = ACTIONS(1339), - [aux_sym_binary_expression_token4] = ACTIONS(1339), - [anon_sym_PIPE_PIPE] = ACTIONS(1339), - [anon_sym_AMP_AMP] = ACTIONS(1339), - [anon_sym_CARET] = ACTIONS(1341), - [anon_sym_EQ_EQ] = ACTIONS(1341), - [anon_sym_BANG_EQ] = ACTIONS(1341), - [anon_sym_LT_GT] = ACTIONS(1339), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1339), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(1341), - [anon_sym_GT] = ACTIONS(1341), - [anon_sym_LT_EQ] = ACTIONS(1341), - [anon_sym_GT_EQ] = ACTIONS(1339), - [anon_sym_LT_EQ_GT] = ACTIONS(1339), - [anon_sym_LT_LT] = ACTIONS(1341), - [anon_sym_GT_GT] = ACTIONS(1341), - [anon_sym_DOT] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_SLASH] = ACTIONS(1341), - [anon_sym_PERCENT] = ACTIONS(1341), - [sym_comment] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(1344), + [anon_sym_EQ] = ACTIONS(1346), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [aux_sym_base_clause_token1] = ACTIONS(1344), + [aux_sym_class_interface_clause_token1] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_EQ_GT] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_RPAREN] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_STAR_STAR] = ACTIONS(1346), + [anon_sym_COLON_COLON] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1344), + [anon_sym_STAR_EQ] = ACTIONS(1344), + [anon_sym_SLASH_EQ] = ACTIONS(1344), + [anon_sym_PERCENT_EQ] = ACTIONS(1344), + [anon_sym_PLUS_EQ] = ACTIONS(1344), + [anon_sym_DASH_EQ] = ACTIONS(1344), + [anon_sym_DOT_EQ] = ACTIONS(1344), + [anon_sym_LT_LT_EQ] = ACTIONS(1344), + [anon_sym_GT_GT_EQ] = ACTIONS(1344), + [anon_sym_AMP_EQ] = ACTIONS(1344), + [anon_sym_CARET_EQ] = ACTIONS(1344), + [anon_sym_PIPE_EQ] = ACTIONS(1344), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1344), + [anon_sym_DASH_GT] = ACTIONS(1344), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_RBRACK] = ACTIONS(1344), + [aux_sym_binary_expression_token1] = ACTIONS(1344), + [anon_sym_QMARK_QMARK] = ACTIONS(1346), + [aux_sym_binary_expression_token2] = ACTIONS(1344), + [aux_sym_binary_expression_token3] = ACTIONS(1344), + [aux_sym_binary_expression_token4] = ACTIONS(1344), + [anon_sym_PIPE_PIPE] = ACTIONS(1344), + [anon_sym_AMP_AMP] = ACTIONS(1344), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_LT_GT] = ACTIONS(1344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1344), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_EQ] = ACTIONS(1344), + [anon_sym_LT_EQ_GT] = ACTIONS(1344), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1346), + [sym_comment] = ACTIONS(595), }, }; @@ -61493,15 +61610,15 @@ static uint16_t ts_small_parse_table[] = { [0] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, STATE(532), 1, sym_text_interpolation, - STATE(545), 1, + STATE(542), 1, sym_arguments, - ACTIONS(1345), 21, + ACTIONS(1350), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61523,7 +61640,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1343), 38, + ACTIONS(1348), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -61562,50 +61679,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [79] = 7, + [79] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, + ACTIONS(1356), 1, + anon_sym_EQ, STATE(533), 1, sym_text_interpolation, - STATE(543), 1, + STATE(541), 1, sym_arguments, - ACTIONS(1351), 21, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_COLON, - 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(1349), 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, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1364), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -61619,9 +61715,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1354), 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, @@ -61634,18 +61734,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [158] = 7, + ACTIONS(1360), 20, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_COLON, + 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, + [166] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, STATE(534), 1, sym_text_interpolation, - STATE(540), 1, + STATE(538), 1, sym_arguments, - ACTIONS(1355), 21, + ACTIONS(1368), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61667,7 +61788,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1353), 38, + ACTIONS(1366), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -61706,29 +61827,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [237] = 11, + [245] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1359), 1, - anon_sym_EQ, STATE(535), 1, sym_text_interpolation, - STATE(546), 1, + STATE(545), 1, sym_arguments, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1372), 21, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_COLON, + 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(1370), 38, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1367), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -61742,13 +61884,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 18, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -61761,39 +61899,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1363), 20, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_COLON, - 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, [324] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, STATE(536), 1, sym_text_interpolation, STATE(547), 1, sym_arguments, - ACTIONS(1371), 21, + ACTIONS(1376), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61815,7 +61932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1369), 38, + ACTIONS(1374), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -61857,15 +61974,15 @@ static uint16_t ts_small_parse_table[] = { [403] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, STATE(537), 1, sym_text_interpolation, - STATE(544), 1, + STATE(549), 1, sym_arguments, - ACTIONS(1375), 21, + ACTIONS(1380), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61887,7 +62004,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1373), 38, + ACTIONS(1378), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -61929,11 +62046,11 @@ static uint16_t ts_small_parse_table[] = { [482] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(538), 1, sym_text_interpolation, - ACTIONS(1379), 21, + ACTIONS(1384), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61955,7 +62072,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1377), 39, + ACTIONS(1382), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -61998,11 +62115,11 @@ static uint16_t ts_small_parse_table[] = { [556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(539), 1, sym_text_interpolation, - ACTIONS(1383), 21, + ACTIONS(1388), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62024,7 +62141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1381), 39, + ACTIONS(1386), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62067,11 +62184,11 @@ static uint16_t ts_small_parse_table[] = { [630] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(540), 1, sym_text_interpolation, - ACTIONS(1387), 21, + ACTIONS(1392), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62093,7 +62210,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1385), 39, + ACTIONS(1390), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62136,11 +62253,11 @@ static uint16_t ts_small_parse_table[] = { [704] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(541), 1, sym_text_interpolation, - ACTIONS(1391), 21, + ACTIONS(1396), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62162,7 +62279,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1389), 39, + ACTIONS(1394), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62205,11 +62322,11 @@ static uint16_t ts_small_parse_table[] = { [778] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(542), 1, sym_text_interpolation, - ACTIONS(1395), 21, + ACTIONS(1400), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62231,7 +62348,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1393), 39, + ACTIONS(1398), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62274,11 +62391,11 @@ static uint16_t ts_small_parse_table[] = { [852] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(543), 1, sym_text_interpolation, - ACTIONS(1399), 21, + ACTIONS(1404), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62300,7 +62417,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1397), 39, + ACTIONS(1402), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62343,11 +62460,11 @@ static uint16_t ts_small_parse_table[] = { [926] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(544), 1, sym_text_interpolation, - ACTIONS(1403), 21, + ACTIONS(1408), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62369,7 +62486,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1401), 39, + ACTIONS(1406), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62412,11 +62529,11 @@ static uint16_t ts_small_parse_table[] = { [1000] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(545), 1, sym_text_interpolation, - ACTIONS(1407), 21, + ACTIONS(1412), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62438,7 +62555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1405), 39, + ACTIONS(1410), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62481,11 +62598,11 @@ static uint16_t ts_small_parse_table[] = { [1074] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(546), 1, sym_text_interpolation, - ACTIONS(1411), 21, + ACTIONS(1416), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62507,7 +62624,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1409), 39, + ACTIONS(1414), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62550,11 +62667,11 @@ static uint16_t ts_small_parse_table[] = { [1148] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(547), 1, sym_text_interpolation, - ACTIONS(1415), 21, + ACTIONS(1420), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62576,7 +62693,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1413), 39, + ACTIONS(1418), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62619,11 +62736,11 @@ static uint16_t ts_small_parse_table[] = { [1222] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(548), 1, sym_text_interpolation, - ACTIONS(1419), 21, + ACTIONS(1424), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62645,7 +62762,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1417), 39, + ACTIONS(1422), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62688,11 +62805,11 @@ static uint16_t ts_small_parse_table[] = { [1296] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(549), 1, sym_text_interpolation, - ACTIONS(1423), 21, + ACTIONS(1428), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62714,7 +62831,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1421), 39, + ACTIONS(1426), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62757,11 +62874,11 @@ static uint16_t ts_small_parse_table[] = { [1370] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(550), 1, sym_text_interpolation, - ACTIONS(1427), 21, + ACTIONS(1432), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62783,7 +62900,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1425), 39, + ACTIONS(1430), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62826,26 +62943,26 @@ static uint16_t ts_small_parse_table[] = { [1444] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1429), 1, + ACTIONS(1434), 1, anon_sym_EQ, - STATE(546), 1, + STATE(541), 1, sym_arguments, STATE(551), 1, sym_text_interpolation, - ACTIONS(1365), 2, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1431), 13, + ACTIONS(1436), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62859,7 +62976,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 16, + ACTIONS(1354), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -62876,7 +62993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1363), 20, + ACTIONS(1360), 20, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62900,22 +63017,22 @@ static uint16_t ts_small_parse_table[] = { [1529] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1359), 1, + ACTIONS(1356), 1, anon_sym_EQ, STATE(552), 1, sym_text_interpolation, - ACTIONS(1365), 2, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1367), 13, + ACTIONS(1364), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62929,7 +63046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 18, + ACTIONS(1354), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -62948,7 +63065,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1363), 20, + ACTIONS(1360), 20, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62972,26 +63089,26 @@ static uint16_t ts_small_parse_table[] = { [1610] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1438), 1, anon_sym_EQ, - STATE(546), 1, + STATE(541), 1, sym_arguments, STATE(553), 1, sym_text_interpolation, - ACTIONS(1365), 2, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1435), 13, + ACTIONS(1440), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -63005,7 +63122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 16, + ACTIONS(1354), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -63022,7 +63139,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63042,160 +63159,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1694] = 37, + [1694] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(213), 1, - aux_sym_arrow_function_token1, - ACTIONS(217), 1, - anon_sym_array, - ACTIONS(237), 1, - aux_sym_throw_expression_token1, - ACTIONS(261), 1, - anon_sym_clone, - ACTIONS(263), 1, - anon_sym_print, - ACTIONS(265), 1, - anon_sym_new, - ACTIONS(269), 1, - sym_shell_command_expression, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(626), 1, - sym_name, - ACTIONS(628), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(630), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1329), 1, - anon_sym_LBRACK, - ACTIONS(1437), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, STATE(554), 1, sym_text_interpolation, - STATE(699), 1, - sym_qualified_name, - STATE(745), 1, - sym_class_constant_access_expression, - STATE(923), 1, - sym_exponentiation_expression, - STATE(1236), 1, - sym__reserved_identifier, - STATE(1310), 1, - sym__dereferencable_expression, - STATE(1946), 1, - sym__scope_resolution_qualifier, - STATE(1947), 1, - sym_relative_scope, - STATE(1984), 1, - sym_static_modifier, - STATE(1988), 1, - sym_namespace_name, - STATE(1989), 1, - sym_namespace_name_as_prefix, - ACTIONS(267), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(275), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(279), 2, - sym_heredoc, - sym_string, - STATE(927), 2, - sym_clone_expression, - sym__primary_expression, - STATE(683), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - ACTIONS(225), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(697), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(936), 6, - sym_arrow_function, - sym_throw_expression, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_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, - [1829] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - anon_sym_EQ, - ACTIONS(1439), 1, - anon_sym_RPAREN, - STATE(546), 1, + STATE(585), 1, sym_arguments, - STATE(555), 1, - sym_text_interpolation, - STATE(1680), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1357), 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(1431), 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(1363), 19, + ACTIONS(1376), 20, + anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63215,29 +63191,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1918] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1359), 1, - anon_sym_EQ, - ACTIONS(1441), 1, - anon_sym_LPAREN, - STATE(556), 1, - sym_text_interpolation, - STATE(570), 1, - sym_arguments, - ACTIONS(1443), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1374), 35, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1367), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -63251,11 +63213,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -63267,7 +63227,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1363), 19, + [1769] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1442), 1, + anon_sym_LPAREN, + STATE(555), 1, + sym_text_interpolation, + STATE(574), 1, + sym_arguments, + ACTIONS(1368), 20, + anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63287,25 +63259,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2001] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1429), 1, - anon_sym_EQ, - STATE(557), 1, - sym_text_interpolation, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1366), 35, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -63319,12 +63281,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 16, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -63336,11 +63295,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1363), 20, + [1844] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1442), 1, + anon_sym_LPAREN, + STATE(556), 1, + sym_text_interpolation, + STATE(577), 1, + sym_arguments, + ACTIONS(1350), 20, + anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR_STAR, @@ -63357,97 +63327,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2080] = 37, + ACTIONS(1348), 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, + [1919] = 37, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(528), 1, + ACTIONS(533), 1, sym_name, - ACTIONS(532), 1, + ACTIONS(537), 1, aux_sym_function_static_declaration_token1, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(536), 1, + ACTIONS(541), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(566), 1, + ACTIONS(571), 1, anon_sym_new, - ACTIONS(570), 1, + ACTIONS(575), 1, sym_shell_command_expression, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(599), 1, aux_sym_arrow_function_token1, - ACTIONS(600), 1, + ACTIONS(605), 1, aux_sym_throw_expression_token1, - ACTIONS(608), 1, + ACTIONS(613), 1, anon_sym_clone, - ACTIONS(610), 1, + ACTIONS(615), 1, anon_sym_print, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1445), 1, + ACTIONS(1444), 1, anon_sym_LPAREN, - STATE(558), 1, + STATE(557), 1, sym_text_interpolation, - STATE(627), 1, + STATE(614), 1, sym_qualified_name, - STATE(673), 1, + STATE(670), 1, sym_class_constant_access_expression, STATE(784), 1, sym_exponentiation_expression, - STATE(1247), 1, + STATE(1243), 1, sym__reserved_identifier, - STATE(1349), 1, + STATE(1368), 1, sym__dereferencable_expression, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, + STATE(2054), 1, + sym_static_modifier, + STATE(2075), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - STATE(2049), 1, - sym_static_modifier, - ACTIONS(275), 2, + ACTIONS(280), 2, anon_sym_self, anon_sym_parent, - ACTIONS(568), 2, + ACTIONS(573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(853), 2, + STATE(862), 2, sym_clone_expression, sym__primary_expression, - STATE(630), 3, + STATE(613), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(550), 4, + ACTIONS(555), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(612), 4, + STATE(636), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(771), 6, + STATE(769), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(606), 7, + STATE(605), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -63455,35 +63461,29 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [2215] = 14, + [2054] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1356), 1, anon_sym_EQ, - ACTIONS(1447), 1, - anon_sym_COMMA, - ACTIONS(1450), 1, - anon_sym_RBRACK, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(559), 1, + STATE(558), 1, sym_text_interpolation, - STATE(1733), 1, - aux_sym__array_destructing_repeat1, - ACTIONS(1365), 2, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1357), 12, + ACTIONS(1354), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -63496,7 +63496,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1435), 13, + ACTIONS(1364), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -63510,7 +63512,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1363), 19, + anon_sym_RBRACK, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63530,90 +63533,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2304] = 11, + [2137] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - ACTIONS(1359), 1, - anon_sym_EQ, - STATE(546), 1, - sym_arguments, - STATE(560), 1, - sym_text_interpolation, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1357), 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(1367), 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(1363), 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, - [2387] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN, - STATE(561), 1, + STATE(559), 1, sym_text_interpolation, - STATE(578), 1, + STATE(583), 1, sym_arguments, - ACTIONS(1371), 20, + ACTIONS(1372), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -63634,7 +63565,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1369), 35, + ACTIONS(1370), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -63670,183 +63601,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2462] = 7, + [2212] = 37, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(218), 1, + aux_sym_arrow_function_token1, + ACTIONS(222), 1, + anon_sym_array, + ACTIONS(242), 1, + aux_sym_throw_expression_token1, + ACTIONS(266), 1, + anon_sym_clone, + ACTIONS(268), 1, + anon_sym_print, + ACTIONS(270), 1, + anon_sym_new, + ACTIONS(274), 1, + sym_shell_command_expression, + ACTIONS(286), 1, + anon_sym_DOLLAR, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(631), 1, + sym_name, + ACTIONS(633), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(635), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1334), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, anon_sym_LPAREN, - STATE(562), 1, + STATE(560), 1, sym_text_interpolation, - STATE(583), 1, - sym_arguments, - ACTIONS(1345), 20, - anon_sym_EQ, - 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, - ACTIONS(1343), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, + STATE(692), 1, + sym_qualified_name, + STATE(743), 1, + sym_class_constant_access_expression, + STATE(935), 1, + sym_exponentiation_expression, + STATE(1249), 1, + sym__reserved_identifier, + STATE(1324), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1977), 1, + sym_static_modifier, + STATE(1991), 1, + sym_namespace_name, + STATE(1993), 1, + sym_namespace_name_as_prefix, + STATE(2032), 1, + sym__scope_resolution_qualifier, + ACTIONS(272), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - 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, - [2537] = 7, + ACTIONS(280), 2, + anon_sym_self, + anon_sym_parent, + ACTIONS(284), 2, + sym_heredoc, + sym_string, + STATE(934), 2, + sym_clone_expression, + sym__primary_expression, + STATE(699), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + ACTIONS(230), 4, + sym_float, + sym_integer, + sym_boolean, + sym_null, + STATE(706), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(932), 6, + sym_arrow_function, + sym_throw_expression, + sym_print_intrinsic, + sym_anonymous_function_creation_expression, + sym_object_creation_expression, + sym_update_expression, + STATE(663), 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, + [2347] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN, - STATE(563), 1, - sym_text_interpolation, - STATE(571), 1, - sym_arguments, - ACTIONS(1351), 20, + ACTIONS(1434), 1, anon_sym_EQ, - 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, - ACTIONS(1349), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, + STATE(561), 1, + sym_text_interpolation, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, 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, - [2612] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN, - STATE(564), 1, - sym_text_interpolation, - STATE(589), 1, - sym_arguments, - ACTIONS(1375), 20, - anon_sym_EQ, - 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, - ACTIONS(1373), 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, + ACTIONS(1436), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -63860,9 +63731,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1354), 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, @@ -63874,22 +63748,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2687] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_text_interpolation, - STATE(584), 1, - sym_arguments, - ACTIONS(1355), 20, - anon_sym_EQ, + ACTIONS(1360), 20, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR_STAR, @@ -63906,133 +63769,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1353), 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, - [2762] = 37, + [2426] = 37, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(528), 1, + ACTIONS(533), 1, sym_name, - ACTIONS(532), 1, + ACTIONS(537), 1, aux_sym_function_static_declaration_token1, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(536), 1, + ACTIONS(541), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(542), 1, - aux_sym_arrow_function_token1, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(552), 1, - aux_sym_throw_expression_token1, - ACTIONS(562), 1, - anon_sym_clone, - ACTIONS(564), 1, - anon_sym_print, - ACTIONS(566), 1, + ACTIONS(571), 1, anon_sym_new, - ACTIONS(570), 1, + ACTIONS(575), 1, sym_shell_command_expression, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, + ACTIONS(645), 1, + aux_sym_arrow_function_token1, + ACTIONS(651), 1, + aux_sym_throw_expression_token1, + ACTIONS(659), 1, + anon_sym_clone, + ACTIONS(661), 1, + anon_sym_print, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1445), 1, + ACTIONS(1444), 1, anon_sym_LPAREN, - STATE(566), 1, + STATE(562), 1, sym_text_interpolation, - STATE(627), 1, + STATE(614), 1, sym_qualified_name, - STATE(673), 1, + STATE(670), 1, sym_class_constant_access_expression, STATE(784), 1, sym_exponentiation_expression, - STATE(1247), 1, + STATE(1243), 1, sym__reserved_identifier, - STATE(1349), 1, + STATE(1368), 1, sym__dereferencable_expression, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(1999), 1, - sym_static_modifier, - STATE(2012), 1, + STATE(2075), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(2080), 1, + sym_static_modifier, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(275), 2, + ACTIONS(280), 2, anon_sym_self, anon_sym_parent, - ACTIONS(568), 2, + ACTIONS(573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(792), 2, + STATE(1001), 2, sym_clone_expression, sym__primary_expression, - STATE(630), 3, + STATE(613), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(550), 4, + ACTIONS(555), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(612), 4, + STATE(636), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(771), 6, + STATE(769), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(606), 7, + STATE(605), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -64040,97 +63867,97 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [2897] = 37, + [2561] = 37, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(528), 1, + ACTIONS(533), 1, sym_name, - ACTIONS(532), 1, + ACTIONS(537), 1, aux_sym_function_static_declaration_token1, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(536), 1, + ACTIONS(541), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(548), 1, + ACTIONS(547), 1, + aux_sym_arrow_function_token1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(566), 1, + ACTIONS(557), 1, + aux_sym_throw_expression_token1, + ACTIONS(567), 1, + anon_sym_clone, + ACTIONS(569), 1, + anon_sym_print, + ACTIONS(571), 1, anon_sym_new, - ACTIONS(570), 1, + ACTIONS(575), 1, sym_shell_command_expression, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(640), 1, - aux_sym_arrow_function_token1, - ACTIONS(646), 1, - aux_sym_throw_expression_token1, - ACTIONS(654), 1, - anon_sym_clone, - ACTIONS(656), 1, - anon_sym_print, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1445), 1, + ACTIONS(1444), 1, anon_sym_LPAREN, - STATE(567), 1, + STATE(563), 1, sym_text_interpolation, - STATE(627), 1, + STATE(614), 1, sym_qualified_name, - STATE(673), 1, + STATE(670), 1, sym_class_constant_access_expression, STATE(784), 1, sym_exponentiation_expression, - STATE(1247), 1, + STATE(1243), 1, sym__reserved_identifier, - STATE(1349), 1, + STATE(1368), 1, sym__dereferencable_expression, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, + STATE(2004), 1, + sym_static_modifier, + STATE(2075), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - STATE(2074), 1, - sym_static_modifier, - ACTIONS(275), 2, + ACTIONS(280), 2, anon_sym_self, anon_sym_parent, - ACTIONS(568), 2, + ACTIONS(573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(975), 2, + STATE(800), 2, sym_clone_expression, sym__primary_expression, - STATE(630), 3, + STATE(613), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(550), 4, + ACTIONS(555), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(612), 4, + STATE(636), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(771), 6, + STATE(769), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(606), 7, + STATE(605), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -64138,29 +63965,48 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [3032] = 11, + [2696] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(755), 1, + anon_sym_COMMA, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1453), 1, + ACTIONS(1434), 1, anon_sym_EQ, - STATE(568), 1, - sym_text_interpolation, - STATE(570), 1, + ACTIONS(1448), 1, + anon_sym_RPAREN, + STATE(541), 1, sym_arguments, - ACTIONS(1443), 2, + STATE(564), 1, + sym_text_interpolation, + STATE(1557), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1455), 13, + ACTIONS(1354), 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(1436), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -64174,23 +64020,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 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(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64210,45 +64040,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3115] = 12, + [2785] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, + ACTIONS(1356), 1, anon_sym_EQ, - STATE(546), 1, - sym_arguments, - STATE(569), 1, + ACTIONS(1442), 1, + anon_sym_LPAREN, + STATE(565), 1, sym_text_interpolation, - ACTIONS(1365), 2, + STATE(587), 1, + sym_arguments, + ACTIONS(1450), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1457), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1357), 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(1431), 13, + ACTIONS(1364), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -64262,7 +64076,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1363), 19, + ACTIONS(1354), 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(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64282,14 +64112,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3199] = 5, + [2868] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(570), 1, + ACTIONS(1442), 1, + anon_sym_LPAREN, + STATE(566), 1, sym_text_interpolation, - ACTIONS(1411), 20, + STATE(589), 1, + sym_arguments, + ACTIONS(1380), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -64310,13 +64144,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1409), 36, + ACTIONS(1378), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -64347,60 +64180,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3269] = 5, + [2943] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(571), 1, - sym_text_interpolation, - ACTIONS(1399), 20, + ACTIONS(1352), 1, + anon_sym_LPAREN, + ACTIONS(1438), 1, anon_sym_EQ, - 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, - ACTIONS(1397), 36, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1452), 1, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1455), 1, + anon_sym_RBRACK, + STATE(541), 1, + sym_arguments, + STATE(567), 1, + sym_text_interpolation, + STATE(1699), 1, + aux_sym__array_destructing_repeat1, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1354), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -64412,15 +64221,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3339] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(572), 1, - sym_text_interpolation, - ACTIONS(1395), 20, - anon_sym_EQ, + ACTIONS(1440), 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(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64440,16 +64255,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1393), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + [3032] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1442), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1458), 1, + anon_sym_EQ, + STATE(568), 1, + sym_text_interpolation, + STATE(587), 1, + sym_arguments, + ACTIONS(1450), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1460), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -64463,49 +64291,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - 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, - [3409] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - anon_sym_EQ, - ACTIONS(1447), 1, + ACTIONS(1354), 15, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1459), 1, - anon_sym_RBRACK, - STATE(546), 1, - sym_arguments, - STATE(573), 1, - sym_text_interpolation, - STATE(1524), 1, - aux_sym__array_destructing_repeat1, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1357), 11, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -64517,21 +64307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1435), 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(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64551,14 +64327,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3497] = 5, + [3115] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(574), 1, + STATE(569), 1, sym_text_interpolation, - ACTIONS(1423), 20, + ACTIONS(1346), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -64579,7 +64355,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1421), 36, + ACTIONS(1344), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -64616,14 +64392,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3567] = 5, + [3185] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(575), 1, + STATE(570), 1, sym_text_interpolation, - ACTIONS(1333), 20, + ACTIONS(1416), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -64644,7 +64420,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1331), 36, + ACTIONS(1414), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -64681,14 +64457,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3637] = 5, + [3255] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(576), 1, + STATE(571), 1, sym_text_interpolation, - ACTIONS(1419), 20, + ACTIONS(1342), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -64709,7 +64485,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1417), 36, + ACTIONS(1340), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -64746,14 +64522,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3707] = 5, + [3325] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(577), 1, + STATE(572), 1, sym_text_interpolation, - ACTIONS(1427), 20, + ACTIONS(1404), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -64774,7 +64550,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1425), 36, + ACTIONS(1402), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -64811,14 +64587,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3777] = 5, + [3395] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(578), 1, + STATE(573), 1, sym_text_interpolation, - ACTIONS(1415), 20, + ACTIONS(1388), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -64839,7 +64615,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1413), 36, + ACTIONS(1386), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -64876,14 +64652,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3847] = 5, + [3465] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(579), 1, + STATE(574), 1, sym_text_interpolation, - ACTIONS(1383), 20, + ACTIONS(1384), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -64904,7 +64680,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1381), 36, + ACTIONS(1382), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -64941,14 +64717,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3917] = 5, + [3535] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(580), 1, + STATE(575), 1, sym_text_interpolation, - ACTIONS(1391), 20, + ACTIONS(1424), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -64969,7 +64745,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1389), 36, + ACTIONS(1422), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -65006,23 +64782,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3987] = 11, + [3605] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, ACTIONS(1462), 1, anon_sym_EQ, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(581), 1, + STATE(576), 1, sym_text_interpolation, - ACTIONS(1365), 2, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -65042,7 +64818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 14, + ACTIONS(1354), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -65057,7 +64833,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65077,14 +64853,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4069] = 5, + [3687] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(582), 1, + STATE(577), 1, sym_text_interpolation, - ACTIONS(1337), 20, + ACTIONS(1400), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -65105,7 +64881,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1335), 36, + ACTIONS(1398), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -65142,14 +64918,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4139] = 5, + [3757] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(583), 1, + STATE(578), 1, sym_text_interpolation, - ACTIONS(1407), 20, + ACTIONS(1338), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -65170,7 +64946,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1405), 36, + ACTIONS(1336), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -65207,125 +64983,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4209] = 5, + [3827] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(584), 1, - sym_text_interpolation, - ACTIONS(1387), 20, - anon_sym_EQ, - 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, - ACTIONS(1385), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1352), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_EQ, + STATE(541), 1, + sym_arguments, + STATE(579), 1, + sym_text_interpolation, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - 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, - [4279] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(585), 1, - sym_text_interpolation, - ACTIONS(1341), 20, - anon_sym_EQ, - 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, - ACTIONS(1339), 36, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1466), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1358), 5, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1354), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -65337,25 +65021,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4349] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1433), 1, - anon_sym_EQ, - STATE(586), 1, - sym_text_interpolation, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1435), 13, + ACTIONS(1436), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -65369,24 +65035,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 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(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65406,32 +65055,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4427] = 12, + [3911] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + STATE(580), 1, + sym_text_interpolation, + ACTIONS(1392), 20, + anon_sym_EQ, + 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, + ACTIONS(1390), 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, + [3981] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1429), 1, + ACTIONS(1434), 1, anon_sym_EQ, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(587), 1, + STATE(581), 1, sym_text_interpolation, - ACTIONS(1365), 2, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1466), 2, + ACTIONS(1468), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1357), 12, + ACTIONS(1354), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -65444,7 +65158,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1431), 13, + ACTIONS(1436), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -65458,7 +65172,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65478,14 +65192,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4511] = 5, + [4065] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(588), 1, + STATE(582), 1, sym_text_interpolation, - ACTIONS(1379), 20, + ACTIONS(1408), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -65506,7 +65220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1377), 36, + ACTIONS(1406), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -65543,14 +65257,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4581] = 5, + [4135] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(589), 1, + STATE(583), 1, sym_text_interpolation, - ACTIONS(1403), 20, + ACTIONS(1412), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -65571,7 +65285,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1401), 36, + ACTIONS(1410), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -65608,25 +65322,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4651] = 9, + [4205] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1359), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + ACTIONS(1438), 1, anon_sym_EQ, - STATE(590), 1, + ACTIONS(1452), 1, + anon_sym_COMMA, + ACTIONS(1470), 1, + anon_sym_RBRACK, + STATE(541), 1, + sym_arguments, + STATE(584), 1, sym_text_interpolation, - ACTIONS(1443), 2, + STATE(1602), 1, + aux_sym__array_destructing_repeat1, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1367), 13, + ACTIONS(1354), 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(1440), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -65640,11 +65376,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 15, + ACTIONS(1360), 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, + [4293] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(585), 1, + sym_text_interpolation, + ACTIONS(1420), 20, + anon_sym_EQ, + 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, + ACTIONS(1418), 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, + [4363] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1438), 1, + anon_sym_EQ, + STATE(586), 1, + sym_text_interpolation, + ACTIONS(1362), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1440), 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(1354), 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, @@ -65656,7 +65510,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65676,25 +65530,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4728] = 9, + [4441] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_EQ, - STATE(591), 1, + STATE(587), 1, sym_text_interpolation, - ACTIONS(1443), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1396), 20, + anon_sym_EQ, + 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, + ACTIONS(1394), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1455), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -65708,11 +65581,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1357), 15, + 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, + [4511] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(588), 1, + sym_text_interpolation, + ACTIONS(1432), 20, + anon_sym_EQ, + 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, + ACTIONS(1430), 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, @@ -65724,7 +65660,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1363), 19, + [4581] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(589), 1, + sym_text_interpolation, + ACTIONS(1428), 20, + anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65744,31 +65688,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4805] = 12, + ACTIONS(1426), 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, + [4651] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(1429), 1, + ACTIONS(1438), 1, anon_sym_EQ, - ACTIONS(1439), 1, - anon_sym_RPAREN, - STATE(592), 1, + ACTIONS(1452), 1, + anon_sym_COMMA, + ACTIONS(1455), 1, + anon_sym_RBRACK, + STATE(590), 1, sym_text_interpolation, - STATE(1680), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1365), 2, + STATE(1699), 1, + aux_sym__array_destructing_repeat1, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1357), 12, + ACTIONS(1354), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -65781,7 +65762,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1431), 13, + ACTIONS(1440), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -65795,7 +65776,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65815,25 +65796,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4888] = 9, + [4734] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1359), 1, + ACTIONS(1356), 1, anon_sym_EQ, - STATE(593), 1, + STATE(591), 1, sym_text_interpolation, - ACTIONS(1365), 2, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1357), 12, + ACTIONS(1354), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -65846,7 +65827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1367), 16, + ACTIONS(1364), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, @@ -65863,7 +65844,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_RBRACK, - ACTIONS(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65883,31 +65864,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4965] = 12, + [4811] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1433), 1, + ACTIONS(1458), 1, anon_sym_EQ, - ACTIONS(1447), 1, + STATE(592), 1, + sym_text_interpolation, + ACTIONS(1450), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1460), 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(1354), 15, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1450), 1, - anon_sym_RBRACK, - STATE(594), 1, + 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(1360), 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, + [4888] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(755), 1, + anon_sym_COMMA, + ACTIONS(1434), 1, + anon_sym_EQ, + ACTIONS(1448), 1, + anon_sym_RPAREN, + STATE(593), 1, sym_text_interpolation, - STATE(1733), 1, - aux_sym__array_destructing_repeat1, - ACTIONS(1365), 2, + STATE(1557), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1357), 12, + ACTIONS(1354), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -65920,7 +65969,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1435), 13, + ACTIONS(1436), 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(1360), 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, + [4971] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1356), 1, + anon_sym_EQ, + STATE(594), 1, + sym_text_interpolation, + ACTIONS(1450), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1364), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -65934,7 +66035,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1363), 19, + ACTIONS(1354), 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(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65957,25 +66074,25 @@ static uint16_t ts_small_parse_table[] = { [5048] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1429), 1, + ACTIONS(1434), 1, anon_sym_EQ, STATE(595), 1, sym_text_interpolation, - ACTIONS(1365), 2, + ACTIONS(1362), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1457), 2, + ACTIONS(1466), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1357), 12, + ACTIONS(1354), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -65988,7 +66105,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1431), 13, + ACTIONS(1436), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -66002,7 +66119,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1363), 19, + ACTIONS(1360), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66022,92 +66139,297 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5126] = 35, + [5126] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(528), 1, - sym_name, - ACTIONS(532), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(536), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(542), 1, - aux_sym_arrow_function_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(552), 1, - aux_sym_throw_expression_token1, - ACTIONS(564), 1, - anon_sym_print, - ACTIONS(566), 1, - anon_sym_new, - ACTIONS(570), 1, - sym_shell_command_expression, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_LPAREN, + ACTIONS(1434), 1, + anon_sym_EQ, STATE(596), 1, sym_text_interpolation, - STATE(627), 1, - sym_qualified_name, - STATE(673), 1, - sym_class_constant_access_expression, - STATE(767), 1, - sym__primary_expression, - STATE(1247), 1, - sym__reserved_identifier, - STATE(1349), 1, - sym__dereferencable_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(1999), 1, - sym_static_modifier, - STATE(2012), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, + ACTIONS(1362), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1468), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1354), 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(1436), 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(1360), 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, + [5204] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1462), 1, + anon_sym_EQ, + STATE(597), 1, + sym_text_interpolation, + ACTIONS(1362), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1464), 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(1354), 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(1360), 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, + [5280] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1438), 1, + anon_sym_EQ, + ACTIONS(1452), 1, + anon_sym_COMMA, + ACTIONS(1470), 1, + anon_sym_RBRACK, + STATE(598), 1, + sym_text_interpolation, + STATE(1602), 1, + aux_sym__array_destructing_repeat1, + ACTIONS(1362), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1354), 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(1440), 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(1360), 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, + [5362] = 35, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(533), 1, + sym_name, + ACTIONS(537), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(541), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(571), 1, + anon_sym_new, + ACTIONS(575), 1, + sym_shell_command_expression, + ACTIONS(581), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, + sym_comment, + ACTIONS(599), 1, + aux_sym_arrow_function_token1, + ACTIONS(605), 1, + aux_sym_throw_expression_token1, + ACTIONS(615), 1, + anon_sym_print, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1444), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_text_interpolation, + STATE(614), 1, + sym_qualified_name, + STATE(670), 1, + sym_class_constant_access_expression, + STATE(753), 1, + sym__primary_expression, + STATE(1243), 1, + sym__reserved_identifier, + STATE(1368), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2054), 1, + sym_static_modifier, + STATE(2075), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(275), 2, + ACTIONS(280), 2, anon_sym_self, anon_sym_parent, - ACTIONS(568), 2, + ACTIONS(573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(630), 3, + STATE(613), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(550), 4, + ACTIONS(555), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(612), 4, + STATE(636), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(771), 6, + STATE(769), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(606), 7, + STATE(605), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -66115,92 +66437,92 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [5254] = 35, + [5490] = 35, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(528), 1, + ACTIONS(533), 1, sym_name, - ACTIONS(532), 1, + ACTIONS(537), 1, aux_sym_function_static_declaration_token1, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(536), 1, + ACTIONS(541), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(566), 1, + ACTIONS(571), 1, anon_sym_new, - ACTIONS(570), 1, + ACTIONS(575), 1, sym_shell_command_expression, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(640), 1, + ACTIONS(645), 1, aux_sym_arrow_function_token1, - ACTIONS(646), 1, + ACTIONS(651), 1, aux_sym_throw_expression_token1, - ACTIONS(656), 1, + ACTIONS(661), 1, anon_sym_print, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1445), 1, + ACTIONS(1444), 1, anon_sym_LPAREN, - STATE(597), 1, + STATE(600), 1, sym_text_interpolation, - STATE(627), 1, + STATE(614), 1, sym_qualified_name, - STATE(673), 1, + STATE(670), 1, sym_class_constant_access_expression, - STATE(767), 1, + STATE(753), 1, sym__primary_expression, - STATE(1247), 1, + STATE(1243), 1, sym__reserved_identifier, - STATE(1349), 1, + STATE(1368), 1, sym__dereferencable_expression, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, + STATE(2075), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - STATE(2074), 1, + STATE(2080), 1, sym_static_modifier, - ACTIONS(275), 2, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(280), 2, anon_sym_self, anon_sym_parent, - ACTIONS(568), 2, + ACTIONS(573), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(630), 3, + STATE(613), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(550), 4, + ACTIONS(555), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(612), 4, + STATE(636), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(771), 6, + STATE(769), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(606), 7, + STATE(605), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -66208,92 +66530,92 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [5382] = 35, + [5618] = 35, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(528), 1, - sym_name, - ACTIONS(532), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(536), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(548), 1, + ACTIONS(218), 1, + aux_sym_arrow_function_token1, + ACTIONS(222), 1, anon_sym_array, - ACTIONS(566), 1, + ACTIONS(242), 1, + aux_sym_throw_expression_token1, + ACTIONS(268), 1, + anon_sym_print, + ACTIONS(270), 1, anon_sym_new, - ACTIONS(570), 1, + ACTIONS(274), 1, sym_shell_command_expression, - ACTIONS(576), 1, + ACTIONS(286), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(595), 1, sym_comment, - ACTIONS(594), 1, - aux_sym_arrow_function_token1, - ACTIONS(600), 1, - aux_sym_throw_expression_token1, - ACTIONS(610), 1, - anon_sym_print, - ACTIONS(1327), 1, + ACTIONS(631), 1, + sym_name, + ACTIONS(633), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(635), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1334), 1, anon_sym_LBRACK, - ACTIONS(1445), 1, + ACTIONS(1446), 1, anon_sym_LPAREN, - STATE(598), 1, + STATE(601), 1, sym_text_interpolation, - STATE(627), 1, + STATE(692), 1, sym_qualified_name, - STATE(673), 1, + STATE(743), 1, sym_class_constant_access_expression, - STATE(767), 1, + STATE(943), 1, sym__primary_expression, - STATE(1247), 1, + STATE(1249), 1, sym__reserved_identifier, - STATE(1349), 1, + STATE(1324), 1, sym__dereferencable_expression, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1977), 1, + sym_static_modifier, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - STATE(2049), 1, - sym_static_modifier, - ACTIONS(275), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(568), 2, + STATE(2032), 1, + sym__scope_resolution_qualifier, + ACTIONS(272), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(574), 2, + ACTIONS(280), 2, + anon_sym_self, + anon_sym_parent, + ACTIONS(284), 2, sym_heredoc, sym_string, - STATE(630), 3, + STATE(699), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(550), 4, + ACTIONS(230), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(612), 4, + STATE(706), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(771), 6, + STATE(932), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(606), 7, + STATE(663), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -66301,92 +66623,92 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [5510] = 35, + [5746] = 35, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(213), 1, + ACTIONS(533), 1, + sym_name, + ACTIONS(537), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(541), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(547), 1, aux_sym_arrow_function_token1, - ACTIONS(217), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(237), 1, + ACTIONS(557), 1, aux_sym_throw_expression_token1, - ACTIONS(263), 1, + ACTIONS(569), 1, anon_sym_print, - ACTIONS(265), 1, + ACTIONS(571), 1, anon_sym_new, - ACTIONS(269), 1, + ACTIONS(575), 1, sym_shell_command_expression, - ACTIONS(281), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(626), 1, - sym_name, - ACTIONS(628), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(630), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1329), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1437), 1, + ACTIONS(1444), 1, anon_sym_LPAREN, - STATE(599), 1, + STATE(602), 1, sym_text_interpolation, - STATE(699), 1, + STATE(614), 1, sym_qualified_name, - STATE(745), 1, + STATE(670), 1, sym_class_constant_access_expression, - STATE(888), 1, + STATE(753), 1, sym__primary_expression, - STATE(1236), 1, + STATE(1243), 1, sym__reserved_identifier, - STATE(1310), 1, + STATE(1368), 1, sym__dereferencable_expression, - STATE(1946), 1, - sym__scope_resolution_qualifier, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1984), 1, - sym_static_modifier, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(1989), 1, + STATE(2004), 1, + sym_static_modifier, + STATE(2075), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(267), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(275), 2, + ACTIONS(280), 2, anon_sym_self, anon_sym_parent, - ACTIONS(279), 2, + ACTIONS(573), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(683), 3, + STATE(613), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(225), 4, + ACTIONS(555), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(697), 4, + STATE(636), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(936), 6, + STATE(769), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(667), 7, + STATE(605), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -66394,237 +66716,85 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [5638] = 12, + [5874] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1433), 1, - anon_sym_EQ, - ACTIONS(1447), 1, - anon_sym_COMMA, - ACTIONS(1459), 1, - anon_sym_RBRACK, - STATE(600), 1, + STATE(603), 1, sym_text_interpolation, - STATE(1524), 1, - aux_sym__array_destructing_repeat1, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1357), 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(1435), 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(1363), 19, + ACTIONS(1404), 13, + anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_COLON, 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, - [5720] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1462), 1, - anon_sym_EQ, - STATE(601), 1, - sym_text_interpolation, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1464), 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(1357), 14, + ACTIONS(1402), 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, - 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(1363), 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, - [5796] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1429), 1, - anon_sym_EQ, - STATE(602), 1, - sym_text_interpolation, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1466), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1361), 5, - anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1357), 12, - anon_sym_EQ_GT, + anon_sym_RBRACK, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1431), 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(1363), 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, - [5874] = 10, + [5935] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1468), 1, - anon_sym_BSLASH, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(603), 1, + STATE(604), 1, sym_text_interpolation, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 12, + ACTIONS(1356), 13, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_COLON, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -66633,15 +66803,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 26, + ACTIONS(1364), 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_PLUS, anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -66660,24 +66831,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5945] = 8, + [6002] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(604), 1, + STATE(605), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1362), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1359), 13, + ACTIONS(1360), 13, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66691,7 +66865,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 27, + ACTIONS(1354), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66699,8 +66873,6 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -66719,28 +66891,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6012] = 10, + [6071] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1475), 1, anon_sym_BSLASH, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(605), 1, + STATE(606), 1, sym_text_interpolation, - STATE(1789), 1, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1473), 12, + ACTIONS(1478), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66753,7 +66925,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 26, + ACTIONS(1473), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66780,32 +66952,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6083] = 9, + [6142] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1475), 1, + anon_sym_BSLASH, + ACTIONS(1484), 1, anon_sym_LPAREN, - STATE(546), 1, - sym_arguments, - STATE(606), 1, + STATE(607), 1, sym_text_interpolation, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, + STATE(644), 1, + sym_arguments, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 13, + ACTIONS(1482), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -66814,13 +66986,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 25, + ACTIONS(1480), 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, @@ -66840,28 +67013,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6152] = 10, + [6213] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, - anon_sym_BSLASH, - ACTIONS(1479), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(607), 1, - sym_text_interpolation, - STATE(649), 1, + ACTIONS(1475), 1, + anon_sym_BSLASH, + STATE(541), 1, sym_arguments, - STATE(1789), 1, + STATE(608), 1, + sym_text_interpolation, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1477), 12, + ACTIONS(1360), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66874,7 +67047,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1475), 26, + ACTIONS(1354), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66901,15 +67074,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6223] = 5, + [6284] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(608), 1, + STATE(609), 1, sym_text_interpolation, - ACTIONS(1419), 13, - anon_sym_EQ, + ACTIONS(1488), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66922,14 +67094,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1417), 34, + ACTIONS(1486), 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, @@ -66940,6 +67111,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOLLAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -66957,18 +67129,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6284] = 7, + [6344] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(547), 1, + STATE(549), 1, sym_arguments, - STATE(609), 1, + STATE(610), 1, sym_text_interpolation, - ACTIONS(1483), 12, + ACTIONS(1492), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66981,7 +67153,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1481), 32, + ACTIONS(1490), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67014,14 +67186,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6348] = 5, + [6408] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(610), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(545), 1, + sym_arguments, + STATE(611), 1, sym_text_interpolation, - ACTIONS(1487), 12, + ACTIONS(1372), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67034,15 +67210,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1485), 34, + ACTIONS(1370), 31, 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, @@ -67051,7 +67225,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOLLAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -67069,19 +67242,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6408] = 7, + [6471] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1494), 1, - anon_sym_EQ, - STATE(611), 1, + ACTIONS(1484), 1, + anon_sym_LPAREN, + STATE(612), 1, sym_text_interpolation, - ACTIONS(1491), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1496), 12, + STATE(654), 1, + sym_arguments, + ACTIONS(1350), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67094,13 +67266,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1489), 30, + ACTIONS(1348), 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, @@ -67108,61 +67280,6 @@ static uint16_t ts_small_parse_table[] = { 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, - [6471] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(612), 1, - sym_text_interpolation, - ACTIONS(1365), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1363), 13, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_COLON, - 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(1357), 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, @@ -67184,21 +67301,21 @@ static uint16_t ts_small_parse_table[] = { [6534] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, + STATE(541), 1, + sym_arguments, STATE(613), 1, sym_text_interpolation, - STATE(649), 1, - sym_arguments, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1477), 12, + ACTIONS(1360), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67211,7 +67328,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1475), 26, + ACTIONS(1354), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67241,21 +67358,21 @@ static uint16_t ts_small_parse_table[] = { [6599] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(546), 1, + STATE(541), 1, sym_arguments, STATE(614), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1473), 12, + ACTIONS(1360), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67268,7 +67385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 26, + ACTIONS(1354), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67298,15 +67415,15 @@ static uint16_t ts_small_parse_table[] = { [6664] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(544), 1, + STATE(538), 1, sym_arguments, STATE(615), 1, sym_text_interpolation, - ACTIONS(1375), 12, + ACTIONS(1368), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67319,7 +67436,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1373), 31, + ACTIONS(1366), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67354,15 +67471,15 @@ static uint16_t ts_small_parse_table[] = { [6727] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1484), 1, anon_sym_LPAREN, - STATE(543), 1, - sym_arguments, STATE(616), 1, sym_text_interpolation, - ACTIONS(1351), 12, + STATE(652), 1, + sym_arguments, + ACTIONS(1376), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67375,7 +67492,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1349), 31, + ACTIONS(1374), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67407,24 +67524,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6790] = 8, + [6790] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, - anon_sym_LPAREN, + STATE(549), 1, + sym_arguments, STATE(617), 1, sym_text_interpolation, - STATE(646), 1, - sym_arguments, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1359), 12, + ACTIONS(1380), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67437,15 +67546,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 26, + ACTIONS(1378), 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, @@ -67464,24 +67579,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6855] = 8, + [6851] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(546), 1, + STATE(542), 1, sym_arguments, STATE(618), 1, sym_text_interpolation, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1473), 12, + ACTIONS(1350), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67494,15 +67603,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 26, + ACTIONS(1348), 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, @@ -67521,18 +67635,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6920] = 7, + [6914] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - STATE(540), 1, + STATE(547), 1, sym_arguments, STATE(619), 1, sym_text_interpolation, - ACTIONS(1355), 12, + ACTIONS(1376), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67545,13 +67657,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1353), 31, + ACTIONS(1374), 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, @@ -67577,16 +67690,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6983] = 6, + [6975] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(545), 1, sym_arguments, STATE(620), 1, sym_text_interpolation, - ACTIONS(1345), 12, + ACTIONS(1372), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67599,7 +67712,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1343), 32, + ACTIONS(1370), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67632,18 +67745,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7044] = 7, + [7036] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(545), 1, + STATE(547), 1, sym_arguments, STATE(621), 1, sym_text_interpolation, - ACTIONS(1345), 12, + ACTIONS(1376), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67656,7 +67769,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1343), 31, + ACTIONS(1374), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67688,18 +67801,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7107] = 7, + [7099] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(547), 1, + STATE(549), 1, sym_arguments, STATE(622), 1, sym_text_interpolation, - ACTIONS(1371), 12, + ACTIONS(1380), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67712,7 +67825,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1369), 31, + ACTIONS(1378), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67744,16 +67857,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7170] = 6, + [7162] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(547), 1, - sym_arguments, + ACTIONS(1499), 1, + anon_sym_EQ, STATE(623), 1, sym_text_interpolation, - ACTIONS(1371), 12, + ACTIONS(1496), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1501), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67766,9 +67882,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1369), 32, + ACTIONS(1494), 30, anon_sym_SEMI, - anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -67781,7 +67896,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -67799,16 +67913,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7231] = 6, + [7225] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(540), 1, - sym_arguments, + ACTIONS(1484), 1, + anon_sym_LPAREN, STATE(624), 1, sym_text_interpolation, - ACTIONS(1355), 12, + STATE(639), 1, + sym_arguments, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1505), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67821,21 +67943,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1353), 32, + ACTIONS(1503), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -67854,16 +67970,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7292] = 6, + [7290] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(543), 1, + STATE(538), 1, sym_arguments, STATE(625), 1, sym_text_interpolation, - ACTIONS(1351), 12, + ACTIONS(1368), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67876,7 +67992,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1349), 32, + ACTIONS(1366), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67909,22 +68025,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7353] = 7, + [7351] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, - anon_sym_LPAREN, STATE(626), 1, sym_text_interpolation, - STATE(638), 1, - sym_arguments, - ACTIONS(1355), 12, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1356), 13, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_COLON, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -67933,20 +68052,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1353), 31, + ACTIONS(1364), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -67965,24 +68080,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7416] = 8, + [7412] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(546), 1, + STATE(541), 1, sym_arguments, STATE(627), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 12, + ACTIONS(1478), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67995,7 +68110,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 26, + ACTIONS(1473), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68022,24 +68137,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7481] = 8, + [7477] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, - anon_sym_LPAREN, + STATE(542), 1, + sym_arguments, STATE(628), 1, sym_text_interpolation, - STATE(646), 1, - sym_arguments, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1500), 12, + ACTIONS(1350), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68052,15 +68159,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1498), 26, + ACTIONS(1348), 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, @@ -68079,18 +68192,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7546] = 7, + [7538] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(1484), 1, anon_sym_LPAREN, STATE(629), 1, sym_text_interpolation, - STATE(656), 1, + STATE(644), 1, sym_arguments, - ACTIONS(1345), 12, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1482), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68103,20 +68222,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1343), 31, + ACTIONS(1480), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_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, @@ -68135,24 +68249,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7609] = 8, + [7603] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1484), 1, anon_sym_LPAREN, - STATE(546), 1, - sym_arguments, STATE(630), 1, sym_text_interpolation, - ACTIONS(1361), 5, + STATE(639), 1, + sym_arguments, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 12, + ACTIONS(1356), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68165,7 +68279,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 26, + ACTIONS(1364), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68192,24 +68306,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7674] = 8, + [7668] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, STATE(631), 1, sym_text_interpolation, - STATE(649), 1, + STATE(771), 1, sym_arguments, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1477), 12, + ACTIONS(1482), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68222,7 +68336,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1475), 26, + ACTIONS(1480), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68249,25 +68363,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7739] = 6, + [7733] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_arguments, STATE(632), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1359), 13, + ACTIONS(1478), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -68276,16 +68393,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 27, + ACTIONS(1473), 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -68304,18 +68420,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7800] = 7, + [7798] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(1484), 1, anon_sym_LPAREN, STATE(633), 1, sym_text_interpolation, - STATE(657), 1, + STATE(644), 1, sym_arguments, - ACTIONS(1351), 12, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1482), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68328,20 +68450,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1349), 31, + ACTIONS(1480), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_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, @@ -68360,24 +68477,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7863] = 8, + [7863] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1502), 1, + ACTIONS(1484), 1, anon_sym_LPAREN, STATE(634), 1, sym_text_interpolation, - STATE(756), 1, + STATE(650), 1, sym_arguments, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1477), 12, + ACTIONS(1380), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68390,15 +68501,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1475), 26, + ACTIONS(1378), 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, @@ -68417,18 +68533,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7928] = 7, + [7926] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(1484), 1, anon_sym_LPAREN, STATE(635), 1, sym_text_interpolation, - STATE(648), 1, + STATE(653), 1, sym_arguments, - ACTIONS(1371), 12, + ACTIONS(1372), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68441,7 +68557,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1369), 31, + ACTIONS(1370), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68473,20 +68589,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7991] = 6, + [7989] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(544), 1, - sym_arguments, STATE(636), 1, sym_text_interpolation, - ACTIONS(1375), 12, + ACTIONS(1362), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1360), 13, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_COLON, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -68495,21 +68619,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1373), 32, + ACTIONS(1354), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -68531,15 +68648,15 @@ static uint16_t ts_small_parse_table[] = { [8052] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(1484), 1, anon_sym_LPAREN, STATE(637), 1, sym_text_interpolation, - STATE(659), 1, + STATE(645), 1, sym_arguments, - ACTIONS(1375), 12, + ACTIONS(1368), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68552,7 +68669,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1373), 31, + ACTIONS(1366), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68587,11 +68704,11 @@ static uint16_t ts_small_parse_table[] = { [8115] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(638), 1, sym_text_interpolation, - ACTIONS(1387), 12, + ACTIONS(1416), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68604,7 +68721,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1385), 32, + ACTIONS(1414), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68640,11 +68757,11 @@ static uint16_t ts_small_parse_table[] = { [8173] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(639), 1, sym_text_interpolation, - ACTIONS(1379), 12, + ACTIONS(1396), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68657,7 +68774,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1377), 32, + ACTIONS(1394), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68693,11 +68810,11 @@ static uint16_t ts_small_parse_table[] = { [8231] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(640), 1, sym_text_interpolation, - ACTIONS(1383), 12, + ACTIONS(1408), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68710,7 +68827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 32, + ACTIONS(1406), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68746,11 +68863,11 @@ static uint16_t ts_small_parse_table[] = { [8289] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(641), 1, sym_text_interpolation, - ACTIONS(1323), 12, + ACTIONS(1328), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68763,7 +68880,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1325), 32, + ACTIONS(1330), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68799,11 +68916,11 @@ static uint16_t ts_small_parse_table[] = { [8347] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(642), 1, sym_text_interpolation, - ACTIONS(1506), 12, + ACTIONS(1511), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68816,7 +68933,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1504), 32, + ACTIONS(1509), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68852,11 +68969,11 @@ static uint16_t ts_small_parse_table[] = { [8405] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(643), 1, sym_text_interpolation, - ACTIONS(1510), 12, + ACTIONS(1501), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68869,7 +68986,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1508), 32, + ACTIONS(1494), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -68902,14 +69019,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8463] = 5, + [8463] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(644), 1, sym_text_interpolation, - ACTIONS(1341), 12, + ACTIONS(1394), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1515), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68922,21 +69046,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1339), 32, + ACTIONS(1513), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -68955,14 +69073,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8521] = 5, + [8523] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(645), 1, sym_text_interpolation, - ACTIONS(1496), 12, + ACTIONS(1384), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68975,7 +69093,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1489), 32, + ACTIONS(1382), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69008,14 +69126,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8579] = 5, + [8581] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(646), 1, sym_text_interpolation, - ACTIONS(1411), 12, + ACTIONS(1519), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69028,7 +69146,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1409), 32, + ACTIONS(1517), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69061,14 +69179,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8637] = 5, + [8639] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(647), 1, sym_text_interpolation, - ACTIONS(1514), 12, + ACTIONS(1523), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69081,7 +69199,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1512), 32, + ACTIONS(1521), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69114,14 +69232,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8695] = 5, + [8697] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(648), 1, sym_text_interpolation, - ACTIONS(1415), 12, + ACTIONS(1424), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69134,7 +69252,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1413), 32, + ACTIONS(1422), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69167,21 +69285,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8753] = 6, + [8755] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(649), 1, sym_text_interpolation, - ACTIONS(1409), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1518), 12, + ACTIONS(1527), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69194,15 +69305,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1516), 26, + ACTIONS(1525), 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, @@ -69224,11 +69341,11 @@ static uint16_t ts_small_parse_table[] = { [8813] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(650), 1, sym_text_interpolation, - ACTIONS(1333), 12, + ACTIONS(1428), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69241,7 +69358,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1331), 32, + ACTIONS(1426), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69277,11 +69394,11 @@ static uint16_t ts_small_parse_table[] = { [8871] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(651), 1, sym_text_interpolation, - ACTIONS(1423), 12, + ACTIONS(1432), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69294,7 +69411,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1421), 32, + ACTIONS(1430), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69330,11 +69447,11 @@ static uint16_t ts_small_parse_table[] = { [8929] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(652), 1, sym_text_interpolation, - ACTIONS(1395), 12, + ACTIONS(1420), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69347,7 +69464,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1393), 32, + ACTIONS(1418), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69383,11 +69500,11 @@ static uint16_t ts_small_parse_table[] = { [8987] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(653), 1, sym_text_interpolation, - ACTIONS(1522), 12, + ACTIONS(1412), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69400,7 +69517,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1520), 32, + ACTIONS(1410), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69436,11 +69553,11 @@ static uint16_t ts_small_parse_table[] = { [9045] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(654), 1, sym_text_interpolation, - ACTIONS(1427), 12, + ACTIONS(1400), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69453,7 +69570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1425), 32, + ACTIONS(1398), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69489,11 +69606,11 @@ static uint16_t ts_small_parse_table[] = { [9103] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(655), 1, sym_text_interpolation, - ACTIONS(1391), 12, + ACTIONS(1342), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69506,7 +69623,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1389), 32, + ACTIONS(1340), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69539,14 +69656,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9161] = 5, + [9161] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1529), 1, + anon_sym_COLON_COLON, STATE(656), 1, sym_text_interpolation, - ACTIONS(1407), 12, + ACTIONS(1404), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69559,7 +69678,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1405), 32, + ACTIONS(1402), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69570,7 +69689,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -69592,14 +69710,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9219] = 5, + [9221] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(657), 1, sym_text_interpolation, - ACTIONS(1399), 12, + ACTIONS(1338), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69612,7 +69730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1397), 32, + ACTIONS(1336), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69645,16 +69763,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9277] = 6, + [9279] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1524), 1, - anon_sym_COLON_COLON, STATE(658), 1, sym_text_interpolation, - ACTIONS(1419), 12, + ACTIONS(1346), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69667,7 +69783,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1417), 31, + ACTIONS(1344), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69678,6 +69794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -69702,11 +69819,11 @@ static uint16_t ts_small_parse_table[] = { [9337] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(659), 1, sym_text_interpolation, - ACTIONS(1403), 12, + ACTIONS(1392), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69719,7 +69836,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1401), 32, + ACTIONS(1390), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69755,11 +69872,11 @@ static uint16_t ts_small_parse_table[] = { [9395] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(660), 1, sym_text_interpolation, - ACTIONS(1528), 12, + ACTIONS(1388), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69772,7 +69889,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1526), 32, + ACTIONS(1386), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69808,11 +69925,11 @@ static uint16_t ts_small_parse_table[] = { [9453] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(661), 1, sym_text_interpolation, - ACTIONS(1337), 12, + ACTIONS(1533), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69825,7 +69942,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1335), 32, + ACTIONS(1531), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -69858,25 +69975,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9511] = 6, + [9511] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(662), 1, sym_text_interpolation, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1473), 12, + ACTIONS(930), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DASH, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -69884,236 +69994,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 26, + ACTIONS(928), 32, 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, - [9570] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1468), 1, - anon_sym_BSLASH, - STATE(570), 1, - sym_arguments, - STATE(663), 1, - sym_text_interpolation, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1363), 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(1357), 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, - [9637] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1468), 1, - anon_sym_BSLASH, - ACTIONS(1530), 1, - anon_sym_LPAREN, - STATE(664), 1, - sym_text_interpolation, - STATE(738), 1, - sym_arguments, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1477), 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(1475), 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, - [9704] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(665), 1, - sym_text_interpolation, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1359), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - 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_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, - [9763] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1491), 1, - anon_sym_RPAREN, - ACTIONS(1494), 1, - anon_sym_EQ, - STATE(666), 1, - sym_text_interpolation, - ACTIONS(1496), 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), 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, @@ -70132,27 +70027,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9824] = 9, + [9568] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - STATE(570), 1, + STATE(587), 1, sym_arguments, - STATE(667), 1, + STATE(663), 1, sym_text_interpolation, - ACTIONS(1443), 2, + ACTIONS(1450), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 12, + ACTIONS(1360), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70165,7 +70060,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 22, + ACTIONS(1354), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70188,32 +70083,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9889] = 10, + [9633] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1468), 1, - anon_sym_BSLASH, - STATE(546), 1, - sym_arguments, - STATE(668), 1, + STATE(664), 1, sym_text_interpolation, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1473), 11, + ACTIONS(907), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_DASH, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -70221,13 +70102,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 23, - sym__automatic_semicolon, + ACTIONS(905), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, + 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, @@ -70245,18 +70135,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9956] = 5, + [9690] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(212), 1, + aux_sym_final_modifier_token1, + ACTIONS(214), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(595), 1, sym_comment, - STATE(669), 1, + ACTIONS(1535), 1, + sym_name, + ACTIONS(1537), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1539), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1541), 1, + sym_var_modifier, + ACTIONS(1545), 1, + anon_sym_QMARK, + ACTIONS(1549), 1, + anon_sym_DOLLAR, + STATE(665), 1, sym_text_interpolation, - ACTIONS(906), 11, + STATE(1004), 1, + aux_sym_property_declaration_repeat1, + STATE(1116), 1, + sym__modifier, + STATE(1252), 1, + sym_qualified_name, + STATE(1319), 1, + sym_variable_name, + STATE(1357), 1, + sym__types, + STATE(1378), 1, + sym_union_type, + STATE(1466), 1, + sym__function_definition_header, + STATE(1468), 1, + sym_property_element, + STATE(1539), 1, + sym__type, + STATE(1991), 1, + sym_namespace_name, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(1543), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1264), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1113), 4, + sym_final_modifier, + sym_abstract_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(1547), 12, + anon_sym_array, + anon_sym_callable, + 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, + [9793] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(666), 1, + sym_text_interpolation, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1478), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_COLON, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -70264,20 +70236,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(904), 32, + ACTIONS(1473), 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_COLON, - 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, @@ -70297,28 +70263,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10013] = 8, + [9852] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1475), 1, + anon_sym_BSLASH, + ACTIONS(1551), 1, anon_sym_LPAREN, - STATE(570), 1, - sym_arguments, - STATE(670), 1, + STATE(667), 1, sym_text_interpolation, - ACTIONS(1361), 5, + STATE(739), 1, + sym_arguments, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1359), 12, + ACTIONS(1482), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -70327,14 +70296,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 24, + ACTIONS(1480), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -70352,18 +70320,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10076] = 5, + [9919] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(671), 1, + STATE(668), 1, sym_text_interpolation, - ACTIONS(910), 11, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1356), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_COLON, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -70371,20 +70346,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(908), 32, + ACTIONS(1364), 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_COLON, - 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, @@ -70404,20 +70373,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10133] = 6, + [9978] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(672), 1, + STATE(669), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1500), 12, + ACTIONS(1505), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70430,7 +70399,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1498), 26, + ACTIONS(1503), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -70457,20 +70426,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10192] = 6, + [10037] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(673), 1, + STATE(670), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 12, + ACTIONS(1360), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70483,7 +70452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 26, + ACTIONS(1354), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -70510,30 +70479,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10251] = 11, + [10096] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1475), 1, anon_sym_BSLASH, - ACTIONS(1532), 1, - anon_sym_COLON, - STATE(570), 1, + STATE(541), 1, sym_arguments, - STATE(674), 1, + STATE(671), 1, sym_text_interpolation, - STATE(1789), 1, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 11, + ACTIONS(1478), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70545,9 +70512,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 21, + ACTIONS(1473), 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, @@ -70567,106 +70536,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10319] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1534), 1, - sym_name, - ACTIONS(1536), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1538), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1540), 1, - sym_var_modifier, - ACTIONS(1544), 1, - anon_sym_QMARK, - ACTIONS(1548), 1, - anon_sym_DOLLAR, - STATE(675), 1, - sym_text_interpolation, - STATE(1039), 1, - aux_sym_property_declaration_repeat1, - STATE(1108), 1, - sym__modifier, - STATE(1248), 1, - sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1352), 1, - sym__types, - STATE(1355), 1, - sym_variable_name, - STATE(1473), 1, - sym_property_element, - STATE(1479), 1, - sym__function_definition_header, - STATE(1534), 1, - sym__type, - STATE(1988), 1, - sym_namespace_name, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(209), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - ACTIONS(1542), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1109), 3, - sym_class_modifier, - sym_static_modifier, - sym_visibility_modifier, - STATE(1292), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1546), 12, - anon_sym_array, - anon_sym_callable, - 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, - [10419] = 11, + [10163] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - ACTIONS(1468), 1, - anon_sym_BSLASH, - ACTIONS(1550), 1, - anon_sym_COLON, - STATE(546), 1, + STATE(587), 1, sym_arguments, - STATE(676), 1, + STATE(672), 1, sym_text_interpolation, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 11, + ACTIONS(1356), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -70675,11 +70566,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 21, + ACTIONS(1364), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, + 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, @@ -70697,30 +70591,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10487] = 11, + [10226] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1475), 1, anon_sym_BSLASH, - ACTIONS(1552), 1, - anon_sym_COLON, - STATE(570), 1, + STATE(587), 1, sym_arguments, - STATE(677), 1, + STATE(673), 1, sym_text_interpolation, - STATE(1789), 1, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 11, + ACTIONS(1360), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70732,9 +70624,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 21, + ACTIONS(1354), 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, @@ -70754,67 +70648,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10555] = 27, + [10293] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1496), 1, + anon_sym_RPAREN, + ACTIONS(1499), 1, + anon_sym_EQ, + STATE(674), 1, + sym_text_interpolation, + ACTIONS(1501), 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(1494), 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, + [10354] = 28, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(212), 1, + aux_sym_final_modifier_token1, + ACTIONS(214), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - ACTIONS(1536), 1, + ACTIONS(1537), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1538), 1, + ACTIONS(1539), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1540), 1, + ACTIONS(1541), 1, sym_var_modifier, - ACTIONS(1544), 1, + ACTIONS(1545), 1, anon_sym_QMARK, - ACTIONS(1548), 1, + ACTIONS(1549), 1, anon_sym_DOLLAR, - STATE(678), 1, + STATE(675), 1, sym_text_interpolation, - STATE(1039), 1, + STATE(1004), 1, aux_sym_property_declaration_repeat1, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1352), 1, - sym__types, - STATE(1355), 1, + STATE(1319), 1, sym_variable_name, - STATE(1450), 1, + STATE(1357), 1, + sym__types, + STATE(1378), 1, + sym_union_type, + STATE(1459), 1, sym__function_definition_header, - STATE(1454), 1, + STATE(1491), 1, sym_property_element, - STATE(1566), 1, + STATE(1511), 1, sym__type, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(209), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - ACTIONS(1542), 3, + ACTIONS(1543), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1109), 3, - sym_class_modifier, - sym_static_modifier, - sym_visibility_modifier, - STATE(1292), 3, + STATE(1264), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1546), 12, + STATE(1113), 4, + sym_final_modifier, + sym_abstract_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -70827,18 +70777,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [10655] = 7, + [10457] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(540), 1, + ACTIONS(1475), 1, + anon_sym_BSLASH, + ACTIONS(1553), 1, + anon_sym_COLON, + STATE(541), 1, sym_arguments, - STATE(679), 1, + STATE(676), 1, sym_text_interpolation, - ACTIONS(1355), 11, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1360), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70850,18 +70812,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1353), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1354), 21, anon_sym_COMMA, - anon_sym_LBRACE, - 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, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -70879,16 +70834,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10714] = 6, + [10525] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(544), 1, + ACTIONS(1442), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_BSLASH, + ACTIONS(1555), 1, + anon_sym_COLON, + STATE(587), 1, sym_arguments, - STATE(680), 1, + STATE(677), 1, sym_text_interpolation, - ACTIONS(1375), 11, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1360), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70900,19 +70869,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1373), 29, + ACTIONS(1354), 21, 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, @@ -70930,18 +70891,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10771] = 7, + [10593] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - STATE(578), 1, + ACTIONS(1475), 1, + anon_sym_BSLASH, + ACTIONS(1557), 1, + anon_sym_COLON, + STATE(587), 1, sym_arguments, - STATE(681), 1, + STATE(678), 1, sym_text_interpolation, - ACTIONS(1483), 11, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1360), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70953,18 +70926,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1481), 28, + ACTIONS(1354), 21, 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, @@ -70982,18 +70948,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10830] = 7, + [10661] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(682), 1, - sym_text_interpolation, - STATE(714), 1, + STATE(538), 1, sym_arguments, - ACTIONS(1345), 11, + STATE(679), 1, + sym_text_interpolation, + ACTIONS(1368), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71005,7 +70971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1343), 28, + ACTIONS(1366), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -71034,24 +71000,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10889] = 8, + [10720] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN, - STATE(570), 1, + STATE(547), 1, sym_arguments, - STATE(683), 1, + STATE(680), 1, sym_text_interpolation, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1363), 11, + ACTIONS(1376), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71063,13 +71021,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 23, + ACTIONS(1374), 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, @@ -71087,14 +71051,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10950] = 5, + [10777] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(684), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(542), 1, + sym_arguments, + STATE(681), 1, sym_text_interpolation, - ACTIONS(1487), 11, + ACTIONS(1350), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71106,14 +71074,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1485), 30, + ACTIONS(1348), 28, 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, @@ -71137,16 +71103,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11005] = 6, + [10836] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(547), 1, - sym_arguments, - STATE(685), 1, + ACTIONS(1551), 1, + anon_sym_LPAREN, + STATE(682), 1, sym_text_interpolation, - ACTIONS(1371), 11, + STATE(734), 1, + sym_arguments, + ACTIONS(1350), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71158,13 +71126,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1369), 29, + ACTIONS(1348), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -71188,18 +71155,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11062] = 7, + [10895] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(686), 1, - sym_text_interpolation, - STATE(718), 1, + STATE(545), 1, sym_arguments, - ACTIONS(1375), 11, + STATE(683), 1, + sym_text_interpolation, + ACTIONS(1372), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71211,7 +71178,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1373), 28, + ACTIONS(1370), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -71240,18 +71207,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11121] = 7, + [10954] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1551), 1, anon_sym_LPAREN, - STATE(687), 1, + STATE(684), 1, sym_text_interpolation, - STATE(716), 1, + STATE(735), 1, sym_arguments, - ACTIONS(1371), 11, + ACTIONS(1368), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71263,7 +71230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1369), 28, + ACTIONS(1366), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -71292,14 +71259,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11180] = 5, + [11013] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(688), 1, + STATE(685), 1, sym_text_interpolation, - ACTIONS(993), 11, + ACTIONS(964), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71311,7 +71278,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(991), 30, + ACTIONS(962), 30, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71342,16 +71309,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11235] = 6, + [11068] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(540), 1, - sym_arguments, - STATE(689), 1, + STATE(686), 1, + sym_text_interpolation, + ACTIONS(998), 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(996), 30, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + [11123] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1551), 1, + anon_sym_LPAREN, + STATE(687), 1, sym_text_interpolation, - ACTIONS(1355), 11, + STATE(733), 1, + sym_arguments, + ACTIONS(1372), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71363,13 +71382,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1353), 29, + ACTIONS(1370), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -71393,18 +71411,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11292] = 7, + [11182] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1551), 1, anon_sym_LPAREN, - STATE(690), 1, + STATE(688), 1, sym_text_interpolation, - STATE(721), 1, + STATE(732), 1, sym_arguments, - ACTIONS(1351), 11, + ACTIONS(1376), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71416,7 +71434,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1349), 28, + ACTIONS(1374), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -71445,16 +71463,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11351] = 6, + [11241] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(545), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(547), 1, sym_arguments, - STATE(691), 1, + STATE(689), 1, sym_text_interpolation, - ACTIONS(1345), 11, + ACTIONS(1376), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71466,13 +71486,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1343), 29, + ACTIONS(1374), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -71496,18 +71515,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11408] = 7, + [11300] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1551), 1, anon_sym_LPAREN, - STATE(692), 1, + STATE(690), 1, sym_text_interpolation, - STATE(734), 1, + STATE(715), 1, sym_arguments, - ACTIONS(1355), 11, + ACTIONS(1380), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71519,7 +71538,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1353), 28, + ACTIONS(1378), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -71548,24 +71567,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11467] = 8, + [11359] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(546), 1, + STATE(549), 1, sym_arguments, - STATE(693), 1, + STATE(691), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1380), 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(1378), 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, - ACTIONS(1473), 11, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11418] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1442), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + STATE(692), 1, + sym_text_interpolation, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1360), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71577,7 +71648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 23, + ACTIONS(1354), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -71601,18 +71672,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11528] = 7, + [11479] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - STATE(543), 1, + STATE(589), 1, sym_arguments, - STATE(694), 1, + STATE(693), 1, sym_text_interpolation, - ACTIONS(1351), 11, + ACTIONS(1492), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71624,7 +71695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1349), 28, + ACTIONS(1490), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -71653,90 +71724,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11587] = 27, + [11538] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - anon_sym_POUND_LBRACK, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1534), 1, - sym_name, - ACTIONS(1554), 1, - anon_sym_COMMA, - ACTIONS(1556), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_arguments, + STATE(694), 1, + sym_text_interpolation, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1478), 11, anon_sym_AMP, - ACTIONS(1558), 1, - anon_sym_RPAREN, - ACTIONS(1560), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1562), 1, anon_sym_QMARK, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - STATE(695), 1, - sym_text_interpolation, - STATE(1081), 1, - sym_attribute_list, - STATE(1104), 1, - sym_visibility_modifier, - STATE(1111), 1, - aux_sym_attribute_list_repeat2, - STATE(1248), 1, - sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1340), 1, - sym__types, - STATE(1410), 1, - sym__type, - STATE(1633), 1, - sym_variable_name, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, - sym_namespace_name, - ACTIONS(211), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1292), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1536), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1546), 12, - anon_sym_array, - anon_sym_callable, - 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, - [11686] = 7, + anon_sym_PIPE, + anon_sym_DASH, + anon_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), 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, + [11599] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - STATE(544), 1, + STATE(542), 1, sym_arguments, - STATE(696), 1, + STATE(695), 1, sym_text_interpolation, - ACTIONS(1375), 11, + ACTIONS(1350), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71748,12 +71798,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1373), 28, + ACTIONS(1348), 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, @@ -71777,27 +71828,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11745] = 7, + [11656] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(697), 1, + STATE(538), 1, + sym_arguments, + STATE(696), 1, sym_text_interpolation, - ACTIONS(1443), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 5, + ACTIONS(1368), 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(1366), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 12, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11713] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(697), 1, + sym_text_interpolation, + ACTIONS(1488), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -71806,12 +71898,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 22, + ACTIONS(1486), 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, @@ -71829,24 +71929,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11804] = 8, + [11768] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1551), 1, anon_sym_LPAREN, - STATE(546), 1, - sym_arguments, STATE(698), 1, sym_text_interpolation, - ACTIONS(1361), 5, + STATE(722), 1, + sym_arguments, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1473), 11, + ACTIONS(1356), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71858,7 +71958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 23, + ACTIONS(1364), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -71882,24 +71982,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11865] = 8, + [11829] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - STATE(570), 1, + STATE(587), 1, sym_arguments, STATE(699), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 11, + ACTIONS(1360), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71911,7 +72011,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 23, + ACTIONS(1354), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -71935,14 +72035,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11926] = 5, + [11890] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1499), 1, + anon_sym_EQ, STATE(700), 1, sym_text_interpolation, - ACTIONS(1419), 11, + ACTIONS(1501), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71954,11 +72056,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1417), 30, + ACTIONS(1494), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -71985,66 +72086,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11981] = 27, + [11947] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(277), 1, + ACTIONS(282), 1, anon_sym_POUND_LBRACK, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - ACTIONS(1556), 1, + ACTIONS(1559), 1, + anon_sym_COMMA, + ACTIONS(1561), 1, anon_sym_AMP, - ACTIONS(1560), 1, + ACTIONS(1563), 1, + anon_sym_RPAREN, + ACTIONS(1565), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1562), 1, + ACTIONS(1567), 1, anon_sym_QMARK, - ACTIONS(1564), 1, + ACTIONS(1569), 1, anon_sym_DOLLAR, - ACTIONS(1566), 1, - anon_sym_COMMA, - ACTIONS(1568), 1, - anon_sym_RPAREN, STATE(701), 1, sym_text_interpolation, - STATE(1081), 1, + STATE(1063), 1, sym_attribute_list, - STATE(1104), 1, + STATE(1106), 1, sym_visibility_modifier, STATE(1111), 1, aux_sym_attribute_list_repeat2, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1340), 1, + STATE(1358), 1, sym__types, - STATE(1410), 1, + STATE(1378), 1, + sym_union_type, + STATE(1411), 1, sym__type, - STATE(1633), 1, + STATE(1637), 1, sym_variable_name, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - ACTIONS(211), 3, + STATE(2007), 1, + sym_namespace_name_as_prefix, + ACTIONS(216), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1292), 3, + STATE(1264), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1661), 3, + STATE(1536), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -72057,74 +72158,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [12080] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(702), 1, - sym_text_interpolation, - ACTIONS(953), 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(951), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - [12135] = 8, + [12046] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1551), 1, anon_sym_LPAREN, - STATE(703), 1, + STATE(702), 1, sym_text_interpolation, - STATE(733), 1, + STATE(722), 1, sym_arguments, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1359), 11, + ACTIONS(1505), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72136,7 +72187,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 23, + ACTIONS(1503), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -72160,67 +72211,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12196] = 6, + [12107] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(5), 1, sym_comment, - STATE(704), 1, - sym_text_interpolation, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1359), 12, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(282), 1, + anon_sym_POUND_LBRACK, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1535), 1, + sym_name, + ACTIONS(1561), 1, anon_sym_AMP, + ACTIONS(1565), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1567), 1, 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(1367), 24, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(1571), 1, 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, - [12253] = 6, + ACTIONS(1573), 1, + anon_sym_RPAREN, + STATE(703), 1, + sym_text_interpolation, + STATE(1063), 1, + sym_attribute_list, + STATE(1106), 1, + sym_visibility_modifier, + STATE(1111), 1, + aux_sym_attribute_list_repeat2, + STATE(1252), 1, + sym_qualified_name, + STATE(1358), 1, + sym__types, + STATE(1378), 1, + sym_union_type, + STATE(1411), 1, + sym__type, + STATE(1637), 1, + sym_variable_name, + STATE(1991), 1, + sym_namespace_name, + STATE(2007), 1, + sym_namespace_name_as_prefix, + ACTIONS(216), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1264), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1664), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1547), 12, + anon_sym_array, + anon_sym_callable, + 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, + [12206] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1494), 1, - anon_sym_EQ, - STATE(705), 1, + STATE(549), 1, + sym_arguments, + STATE(704), 1, sym_text_interpolation, - ACTIONS(1496), 11, + ACTIONS(1380), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72232,7 +72304,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1489), 29, + ACTIONS(1378), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -72262,18 +72334,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12310] = 7, + [12263] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1551), 1, anon_sym_LPAREN, - STATE(547), 1, - sym_arguments, - STATE(706), 1, + STATE(705), 1, sym_text_interpolation, - ACTIONS(1371), 11, + STATE(739), 1, + sym_arguments, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1482), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72285,18 +72363,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1369), 28, + ACTIONS(1480), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -72314,27 +72387,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12369] = 8, + [12324] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, - anon_sym_LPAREN, - STATE(707), 1, + STATE(706), 1, sym_text_interpolation, - STATE(733), 1, - sym_arguments, - ACTIONS(1361), 5, + ACTIONS(1450), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1500), 11, + ACTIONS(1360), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -72343,12 +72416,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1498), 23, + ACTIONS(1354), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -72367,24 +72439,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12430] = 8, + [12383] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1570), 1, + ACTIONS(1551), 1, anon_sym_LPAREN, - STATE(708), 1, + STATE(707), 1, sym_text_interpolation, - STATE(954), 1, + STATE(739), 1, sym_arguments, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1477), 11, + ACTIONS(1482), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72396,7 +72468,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1475), 23, + ACTIONS(1480), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -72420,27 +72492,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12491] = 8, + [12444] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, - anon_sym_LPAREN, - STATE(709), 1, + STATE(708), 1, sym_text_interpolation, - STATE(738), 1, - sym_arguments, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1477), 11, + ACTIONS(1356), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -72449,13 +72518,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1475), 23, + ACTIONS(1364), 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, + [12501] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(709), 1, + sym_text_interpolation, + ACTIONS(1404), 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(1402), 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, @@ -72473,24 +72593,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12552] = 8, + [12556] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1575), 1, anon_sym_LPAREN, STATE(710), 1, sym_text_interpolation, - STATE(738), 1, + STATE(936), 1, sym_arguments, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1477), 11, + ACTIONS(1482), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72502,7 +72622,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1475), 23, + ACTIONS(1480), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -72526,18 +72646,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12613] = 7, + [12617] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, STATE(545), 1, sym_arguments, STATE(711), 1, sym_text_interpolation, - ACTIONS(1345), 11, + ACTIONS(1372), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72549,12 +72667,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1343), 28, + ACTIONS(1370), 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, @@ -72578,16 +72697,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12672] = 6, + [12674] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(543), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(541), 1, sym_arguments, STATE(712), 1, sym_text_interpolation, - ACTIONS(1351), 11, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1478), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72599,19 +72726,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1349), 29, + ACTIONS(1473), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -72629,64 +72750,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12729] = 26, + [12735] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(277), 1, + ACTIONS(282), 1, anon_sym_POUND_LBRACK, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - ACTIONS(1556), 1, + ACTIONS(1561), 1, anon_sym_AMP, - ACTIONS(1560), 1, + ACTIONS(1565), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1562), 1, + ACTIONS(1567), 1, anon_sym_QMARK, - ACTIONS(1564), 1, + ACTIONS(1569), 1, anon_sym_DOLLAR, - ACTIONS(1572), 1, + ACTIONS(1577), 1, anon_sym_RPAREN, STATE(713), 1, sym_text_interpolation, - STATE(1081), 1, + STATE(1063), 1, sym_attribute_list, - STATE(1104), 1, + STATE(1106), 1, sym_visibility_modifier, STATE(1111), 1, aux_sym_attribute_list_repeat2, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1340), 1, + STATE(1358), 1, sym__types, - STATE(1410), 1, + STATE(1378), 1, + sym_union_type, + STATE(1411), 1, sym__type, - STATE(1633), 1, + STATE(1637), 1, sym_variable_name, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - ACTIONS(211), 3, + STATE(2007), 1, + sym_namespace_name_as_prefix, + ACTIONS(216), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1292), 3, + STATE(1264), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1848), 3, + STATE(1940), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -72699,14 +72820,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [12825] = 5, + [12831] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(5), 1, sym_comment, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(282), 1, + anon_sym_POUND_LBRACK, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1535), 1, + sym_name, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1565), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1567), 1, + anon_sym_QMARK, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_RPAREN, STATE(714), 1, sym_text_interpolation, - ACTIONS(1407), 11, + STATE(1063), 1, + sym_attribute_list, + STATE(1106), 1, + sym_visibility_modifier, + STATE(1111), 1, + aux_sym_attribute_list_repeat2, + STATE(1252), 1, + sym_qualified_name, + STATE(1358), 1, + sym__types, + STATE(1378), 1, + sym_union_type, + STATE(1411), 1, + sym__type, + STATE(1637), 1, + sym_variable_name, + STATE(1991), 1, + sym_namespace_name, + STATE(2007), 1, + sym_namespace_name_as_prefix, + ACTIONS(216), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1264), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1940), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1547), 12, + anon_sym_array, + anon_sym_callable, + 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, + [12927] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(715), 1, + sym_text_interpolation, + ACTIONS(1428), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72718,7 +72909,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1405), 29, + ACTIONS(1426), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -72748,16 +72939,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12879] = 6, + [12981] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1524), 1, - anon_sym_COLON_COLON, - STATE(715), 1, + STATE(716), 1, sym_text_interpolation, - ACTIONS(1419), 11, + ACTIONS(1338), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72769,7 +72958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1417), 28, + ACTIONS(1336), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -72778,6 +72967,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -72798,14 +72988,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12935] = 5, + [13035] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(716), 1, + STATE(717), 1, sym_text_interpolation, - ACTIONS(1415), 11, + ACTIONS(1424), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72817,7 +73007,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1413), 29, + ACTIONS(1422), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -72847,14 +73037,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12989] = 5, + [13089] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(717), 1, + STATE(718), 1, sym_text_interpolation, - ACTIONS(1528), 11, + ACTIONS(1523), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72866,7 +73056,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1526), 29, + ACTIONS(1521), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -72896,14 +73086,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13043] = 5, + [13143] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(718), 1, + STATE(719), 1, sym_text_interpolation, - ACTIONS(1403), 11, + ACTIONS(1408), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72915,7 +73105,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1401), 29, + ACTIONS(1406), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -72945,64 +73135,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13097] = 26, + [13197] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(277), 1, + ACTIONS(282), 1, anon_sym_POUND_LBRACK, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - ACTIONS(1556), 1, + ACTIONS(1561), 1, anon_sym_AMP, - ACTIONS(1560), 1, + ACTIONS(1565), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1562), 1, + ACTIONS(1567), 1, anon_sym_QMARK, - ACTIONS(1564), 1, + ACTIONS(1569), 1, anon_sym_DOLLAR, - ACTIONS(1574), 1, + ACTIONS(1581), 1, anon_sym_RPAREN, - STATE(719), 1, + STATE(720), 1, sym_text_interpolation, - STATE(1081), 1, + STATE(1063), 1, sym_attribute_list, - STATE(1104), 1, + STATE(1106), 1, sym_visibility_modifier, STATE(1111), 1, aux_sym_attribute_list_repeat2, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1340), 1, + STATE(1358), 1, sym__types, - STATE(1410), 1, + STATE(1378), 1, + sym_union_type, + STATE(1411), 1, sym__type, - STATE(1633), 1, + STATE(1637), 1, sym_variable_name, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - ACTIONS(211), 3, + STATE(2007), 1, + sym_namespace_name_as_prefix, + ACTIONS(216), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1292), 3, + STATE(1264), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1848), 3, + STATE(1940), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -73015,14 +73205,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [13193] = 5, + [13293] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(720), 1, + STATE(721), 1, sym_text_interpolation, - ACTIONS(1337), 11, + ACTIONS(1342), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73034,7 +73224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1335), 29, + ACTIONS(1340), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73064,14 +73254,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13247] = 5, + [13347] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(721), 1, + STATE(722), 1, sym_text_interpolation, - ACTIONS(1399), 11, + ACTIONS(1396), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73083,7 +73273,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1397), 29, + ACTIONS(1394), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73113,14 +73303,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13301] = 5, + [13401] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(722), 1, + STATE(723), 1, sym_text_interpolation, - ACTIONS(1514), 11, + ACTIONS(1392), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73132,7 +73322,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1512), 29, + ACTIONS(1390), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73162,14 +73352,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13355] = 5, + [13455] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(723), 1, + STATE(724), 1, sym_text_interpolation, - ACTIONS(1383), 11, + ACTIONS(1416), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73181,7 +73371,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 29, + ACTIONS(1414), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73211,14 +73401,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13409] = 5, + [13509] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(724), 1, + STATE(725), 1, sym_text_interpolation, - ACTIONS(1379), 11, + ACTIONS(1388), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73230,7 +73420,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1377), 29, + ACTIONS(1386), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73260,19 +73450,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13463] = 7, + [13563] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1494), 1, - anon_sym_EQ, - STATE(725), 1, + STATE(726), 1, sym_text_interpolation, - ACTIONS(1576), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1496), 11, + ACTIONS(1533), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73284,7 +73469,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1489), 26, + ACTIONS(1531), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -73311,14 +73499,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13521] = 5, + [13617] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(726), 1, + STATE(727), 1, sym_text_interpolation, - ACTIONS(1391), 11, + ACTIONS(1328), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73330,7 +73518,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1389), 29, + ACTIONS(1330), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73360,14 +73548,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13575] = 5, + [13671] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(727), 1, + STATE(728), 1, sym_text_interpolation, - ACTIONS(1522), 11, + ACTIONS(1527), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73379,7 +73567,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1520), 29, + ACTIONS(1525), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73409,14 +73597,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13629] = 5, + [13725] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(728), 1, + ACTIONS(1499), 1, + anon_sym_EQ, + STATE(729), 1, sym_text_interpolation, - ACTIONS(1333), 11, + ACTIONS(1501), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73428,13 +73618,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1331), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1494), 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, @@ -73458,14 +73647,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13683] = 5, + [13781] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(729), 1, + STATE(730), 1, sym_text_interpolation, - ACTIONS(1341), 11, + ACTIONS(1519), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73477,7 +73666,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1339), 29, + ACTIONS(1517), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73507,14 +73696,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13737] = 5, + [13835] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1499), 1, + anon_sym_EQ, + STATE(731), 1, + sym_text_interpolation, + ACTIONS(1583), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1501), 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(1494), 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, + [13893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(730), 1, + STATE(732), 1, sym_text_interpolation, - ACTIONS(1395), 11, + ACTIONS(1420), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73526,7 +73766,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1393), 29, + ACTIONS(1418), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73556,14 +73796,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13791] = 5, + [13947] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(731), 1, + STATE(733), 1, sym_text_interpolation, - ACTIONS(1423), 11, + ACTIONS(1412), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73575,7 +73815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1421), 29, + ACTIONS(1410), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73605,14 +73845,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13845] = 5, + [14001] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(732), 1, + STATE(734), 1, sym_text_interpolation, - ACTIONS(1323), 11, + ACTIONS(1400), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73624,7 +73864,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1325), 29, + ACTIONS(1398), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73654,14 +73894,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13899] = 5, + [14055] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(733), 1, + STATE(735), 1, sym_text_interpolation, - ACTIONS(1411), 11, + ACTIONS(1384), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73673,7 +73913,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1409), 29, + ACTIONS(1382), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73703,14 +73943,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13953] = 5, + [14109] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(734), 1, + STATE(736), 1, sym_text_interpolation, - ACTIONS(1387), 11, + ACTIONS(1511), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73722,7 +73962,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1385), 29, + ACTIONS(1509), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73752,14 +73992,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14007] = 5, + [14163] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(5), 1, sym_comment, - STATE(735), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(282), 1, + anon_sym_POUND_LBRACK, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1535), 1, + sym_name, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1565), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1567), 1, + anon_sym_QMARK, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(1585), 1, + anon_sym_RPAREN, + STATE(737), 1, sym_text_interpolation, - ACTIONS(1510), 11, + STATE(1063), 1, + sym_attribute_list, + STATE(1106), 1, + sym_visibility_modifier, + STATE(1111), 1, + aux_sym_attribute_list_repeat2, + STATE(1252), 1, + sym_qualified_name, + STATE(1358), 1, + sym__types, + STATE(1378), 1, + sym_union_type, + STATE(1411), 1, + sym__type, + STATE(1637), 1, + sym_variable_name, + STATE(1991), 1, + sym_namespace_name, + STATE(2007), 1, + sym_namespace_name_as_prefix, + ACTIONS(216), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1264), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1940), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1547), 12, + anon_sym_array, + anon_sym_callable, + 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, + [14259] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(738), 1, + sym_text_interpolation, + ACTIONS(1432), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73771,7 +74081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1508), 29, + ACTIONS(1430), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73801,16 +74111,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14061] = 6, + [14313] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1494), 1, - anon_sym_EQ, - STATE(736), 1, + STATE(739), 1, sym_text_interpolation, - ACTIONS(1496), 11, + ACTIONS(1394), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1515), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73822,18 +74137,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1489), 28, + ACTIONS(1513), 23, + sym__automatic_semicolon, + anon_sym_SEMI, 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, @@ -73851,14 +74161,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14117] = 5, + [14369] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(737), 1, + STATE(740), 1, sym_text_interpolation, - ACTIONS(1506), 11, + ACTIONS(1346), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73870,7 +74180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1504), 29, + ACTIONS(1344), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73900,21 +74210,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14171] = 6, + [14423] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(738), 1, - sym_text_interpolation, - ACTIONS(1409), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1529), 1, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1518), 11, + STATE(741), 1, + sym_text_interpolation, + ACTIONS(1404), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73926,13 +74231,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1516), 23, + ACTIONS(1402), 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, @@ -73950,14 +74260,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14227] = 5, + [14479] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(739), 1, + STATE(742), 1, sym_text_interpolation, - ACTIONS(1427), 11, + ACTIONS(1501), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -73969,7 +74279,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1425), 29, + ACTIONS(1494), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -73999,14 +74309,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14281] = 5, + [14533] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(740), 1, + STATE(743), 1, sym_text_interpolation, - ACTIONS(1496), 11, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1360), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74018,19 +74334,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1489), 29, + ACTIONS(1354), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -74048,134 +74358,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14335] = 26, + [14588] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(277), 1, + ACTIONS(282), 1, anon_sym_POUND_LBRACK, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - ACTIONS(1556), 1, + ACTIONS(1561), 1, anon_sym_AMP, - ACTIONS(1560), 1, + ACTIONS(1565), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1562), 1, + ACTIONS(1567), 1, anon_sym_QMARK, - ACTIONS(1564), 1, + ACTIONS(1569), 1, anon_sym_DOLLAR, - ACTIONS(1578), 1, - anon_sym_RPAREN, - STATE(741), 1, + STATE(744), 1, sym_text_interpolation, - STATE(1081), 1, + STATE(1063), 1, sym_attribute_list, - STATE(1104), 1, + STATE(1106), 1, sym_visibility_modifier, STATE(1111), 1, aux_sym_attribute_list_repeat2, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1340), 1, + STATE(1358), 1, sym__types, - STATE(1410), 1, - sym__type, - STATE(1633), 1, - sym_variable_name, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, - sym_namespace_name, - ACTIONS(211), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1292), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1848), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1546), 12, - anon_sym_array, - anon_sym_callable, - 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, - [14431] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - anon_sym_POUND_LBRACK, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1534), 1, - sym_name, - ACTIONS(1556), 1, - anon_sym_AMP, - ACTIONS(1560), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1562), 1, - anon_sym_QMARK, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(1580), 1, - anon_sym_RPAREN, - STATE(742), 1, - sym_text_interpolation, - STATE(1081), 1, - sym_attribute_list, - STATE(1104), 1, - sym_visibility_modifier, - STATE(1111), 1, - aux_sym_attribute_list_repeat2, - STATE(1248), 1, - sym_qualified_name, - STATE(1327), 1, + STATE(1378), 1, sym_union_type, - STATE(1340), 1, - sym__types, - STATE(1410), 1, + STATE(1411), 1, sym__type, - STATE(1633), 1, + STATE(1637), 1, sym_variable_name, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - ACTIONS(211), 3, + STATE(2007), 1, + sym_namespace_name_as_prefix, + ACTIONS(216), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1292), 3, + STATE(1264), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1848), 3, + STATE(1940), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -74188,20 +74426,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [14527] = 6, + [14681] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(743), 1, + STATE(745), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1359), 11, + ACTIONS(1356), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74213,7 +74451,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 23, + ACTIONS(1364), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -74237,20 +74475,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14582] = 6, + [14736] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(744), 1, + STATE(746), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1500), 11, + ACTIONS(1505), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74262,7 +74500,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1498), 23, + ACTIONS(1503), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -74286,20 +74524,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14637] = 6, + [14791] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(745), 1, + STATE(747), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1363), 11, + ACTIONS(1478), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74311,7 +74549,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 23, + ACTIONS(1473), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -74335,92 +74573,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14692] = 25, + [14846] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - anon_sym_POUND_LBRACK, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1534), 1, - sym_name, - ACTIONS(1556), 1, - anon_sym_AMP, - ACTIONS(1560), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1562), 1, - anon_sym_QMARK, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - STATE(746), 1, - sym_text_interpolation, - STATE(1081), 1, - sym_attribute_list, - STATE(1104), 1, - sym_visibility_modifier, - STATE(1111), 1, - aux_sym_attribute_list_repeat2, - STATE(1248), 1, - sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1340), 1, - sym__types, - STATE(1410), 1, - sym__type, - STATE(1633), 1, - sym_variable_name, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, - sym_namespace_name, - ACTIONS(211), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1292), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1848), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1546), 12, - anon_sym_array, - anon_sym_callable, - 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, - [14785] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(747), 1, + STATE(748), 1, sym_text_interpolation, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1473), 11, + ACTIONS(1589), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -74428,13 +74591,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 23, - sym__automatic_semicolon, + ACTIONS(1587), 28, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, 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, @@ -74452,14 +74620,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14840] = 5, + [14898] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(748), 1, + STATE(749), 1, sym_text_interpolation, - ACTIONS(1584), 10, + ACTIONS(1593), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74470,7 +74638,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1582), 28, + ACTIONS(1591), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74499,14 +74667,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14892] = 5, + [14950] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(749), 1, + STATE(750), 1, sym_text_interpolation, - ACTIONS(1588), 10, + ACTIONS(1597), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74517,7 +74685,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1586), 28, + ACTIONS(1595), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74546,14 +74714,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14944] = 5, + [15002] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(750), 1, + STATE(751), 1, sym_text_interpolation, - ACTIONS(1333), 10, + ACTIONS(1601), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74564,7 +74732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1331), 28, + ACTIONS(1599), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74593,14 +74761,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14996] = 5, + [15054] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(751), 1, + STATE(752), 1, sym_text_interpolation, - ACTIONS(1592), 10, + ACTIONS(1605), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74611,7 +74779,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1590), 28, + ACTIONS(1603), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74640,14 +74808,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15048] = 5, + [15106] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(752), 1, + STATE(753), 1, sym_text_interpolation, - ACTIONS(1596), 10, + ACTIONS(1609), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74658,7 +74826,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1594), 28, + ACTIONS(1607), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74687,14 +74855,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15100] = 5, + [15158] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(581), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - STATE(753), 1, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + sym_name, + ACTIONS(1613), 1, + anon_sym_RBRACE, + ACTIONS(1615), 1, + anon_sym_LPAREN, + STATE(754), 1, sym_text_interpolation, - ACTIONS(1600), 10, + STATE(779), 1, + aux_sym_use_list_repeat1, + STATE(1239), 1, + sym_class_constant_access_expression, + STATE(1333), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2075), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(1243), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1861), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1323), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1241), 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, + [15248] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1621), 1, + aux_sym_binary_expression_token1, + STATE(755), 1, + sym_text_interpolation, + ACTIONS(1619), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74705,7 +74941,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 28, + ACTIONS(1617), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74717,7 +74953,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_RBRACK, - aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -74734,14 +74969,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15152] = 5, + [15302] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(754), 1, + STATE(756), 1, sym_text_interpolation, - ACTIONS(1604), 10, + ACTIONS(1625), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74752,7 +74987,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 28, + ACTIONS(1623), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74781,16 +75016,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15204] = 6, + [15354] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1606), 1, + STATE(757), 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_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, aux_sym_binary_expression_token1, - STATE(755), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [15406] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(758), 1, sym_text_interpolation, - ACTIONS(1584), 10, + ACTIONS(1633), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74801,7 +75081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1582), 27, + ACTIONS(1631), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74813,6 +75093,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_RBRACK, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -74829,14 +75110,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15258] = 5, + [15458] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(756), 1, + STATE(759), 1, sym_text_interpolation, - ACTIONS(1518), 10, + ACTIONS(1637), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74847,7 +75128,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1516), 28, + ACTIONS(1635), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74876,14 +75157,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15310] = 5, + [15510] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(757), 1, + STATE(760), 1, sym_text_interpolation, - ACTIONS(1610), 10, + ACTIONS(1505), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74894,7 +75175,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 28, + ACTIONS(1503), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74923,14 +75204,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15362] = 5, + [15562] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(758), 1, + STATE(761), 1, sym_text_interpolation, - ACTIONS(1614), 10, + ACTIONS(1641), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74941,7 +75222,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1612), 28, + ACTIONS(1639), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -74970,14 +75251,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15414] = 5, + [15614] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(759), 1, + STATE(762), 1, sym_text_interpolation, - ACTIONS(1618), 10, + ACTIONS(1645), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74988,7 +75269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1616), 28, + ACTIONS(1643), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75017,14 +75298,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15466] = 5, + [15666] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(760), 1, + STATE(763), 1, sym_text_interpolation, - ACTIONS(1622), 10, + ACTIONS(1619), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75035,7 +75316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1620), 28, + ACTIONS(1617), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75064,14 +75345,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15518] = 5, + [15718] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(761), 1, + STATE(764), 1, sym_text_interpolation, - ACTIONS(1626), 10, + ACTIONS(1649), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75082,7 +75363,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 28, + ACTIONS(1647), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75111,80 +75392,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15570] = 24, + [15770] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1628), 1, - sym_name, - ACTIONS(1630), 1, + STATE(765), 1, + sym_text_interpolation, + ACTIONS(1653), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1651), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - ACTIONS(1632), 1, - anon_sym_LPAREN, - STATE(762), 1, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + [15822] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(766), 1, sym_text_interpolation, - STATE(783), 1, - aux_sym_use_list_repeat1, - STATE(1233), 1, - sym_class_constant_access_expression, - STATE(1335), 1, - sym__dereferencable_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(2012), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(1247), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1824), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1354), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1240), 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, - [15660] = 5, + ACTIONS(1657), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1655), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + [15874] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(763), 1, + STATE(767), 1, sym_text_interpolation, - ACTIONS(1636), 10, + ACTIONS(1661), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75195,7 +75504,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1634), 28, + ACTIONS(1659), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75224,14 +75533,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15712] = 5, + [15926] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(764), 1, + STATE(768), 1, sym_text_interpolation, - ACTIONS(1640), 10, + ACTIONS(1665), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75242,7 +75551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1638), 28, + ACTIONS(1663), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75271,14 +75580,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15764] = 5, + [15978] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(765), 1, + STATE(769), 1, sym_text_interpolation, - ACTIONS(1644), 10, + ACTIONS(1360), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75289,7 +75598,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 28, + ACTIONS(1354), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75318,14 +75627,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15816] = 5, + [16030] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(766), 1, + STATE(770), 1, sym_text_interpolation, - ACTIONS(1648), 10, + ACTIONS(1669), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75336,7 +75645,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 28, + ACTIONS(1667), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75365,14 +75674,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15868] = 5, + [16082] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(767), 1, + STATE(771), 1, sym_text_interpolation, - ACTIONS(1652), 10, + ACTIONS(1515), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75383,7 +75692,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 28, + ACTIONS(1513), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75412,14 +75721,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15920] = 5, + [16134] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(768), 1, + STATE(772), 1, sym_text_interpolation, - ACTIONS(1656), 10, + ACTIONS(1673), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75430,7 +75739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1654), 28, + ACTIONS(1671), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75459,14 +75768,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15972] = 5, + [16186] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(769), 1, + STATE(773), 1, sym_text_interpolation, - ACTIONS(1500), 10, + ACTIONS(1478), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75477,7 +75786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1498), 28, + ACTIONS(1473), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75506,14 +75815,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16024] = 5, + [16238] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(770), 1, + STATE(774), 1, sym_text_interpolation, - ACTIONS(1660), 10, + ACTIONS(1677), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75524,7 +75833,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 28, + ACTIONS(1675), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75553,14 +75862,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16076] = 5, + [16290] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(771), 1, + STATE(775), 1, sym_text_interpolation, - ACTIONS(1363), 10, + ACTIONS(1681), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75571,7 +75880,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 28, + ACTIONS(1679), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75600,14 +75909,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16128] = 5, + [16342] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(772), 1, + STATE(776), 1, sym_text_interpolation, - ACTIONS(1664), 10, + ACTIONS(1346), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75618,7 +75927,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 28, + ACTIONS(1344), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75647,62 +75956,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16180] = 24, + [16394] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1628), 1, + ACTIONS(1611), 1, sym_name, - ACTIONS(1632), 1, + ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1666), 1, + ACTIONS(1683), 1, anon_sym_RBRACE, - STATE(762), 1, + STATE(754), 1, aux_sym_use_list_repeat1, - STATE(773), 1, + STATE(777), 1, sym_text_interpolation, - STATE(1233), 1, + STATE(1239), 1, sym_class_constant_access_expression, - STATE(1335), 1, + STATE(1333), 1, sym__dereferencable_expression, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, + STATE(2075), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(1247), 2, + STATE(1243), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1824), 2, + STATE(1861), 2, sym_use_instead_of_clause, sym_use_as_clause, - ACTIONS(275), 3, + ACTIONS(280), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1354), 4, + STATE(1323), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1240), 10, + STATE(1241), 10, sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, @@ -75713,61 +76022,14 @@ static uint16_t ts_small_parse_table[] = { sym__string, sym_dynamic_variable_name, sym_variable_name, - [16270] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(774), 1, - sym_text_interpolation, - ACTIONS(1341), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1339), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - [16322] = 5, + [16484] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(775), 1, + STATE(778), 1, sym_text_interpolation, - ACTIONS(1337), 10, + ACTIONS(1338), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75778,7 +76040,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1335), 28, + ACTIONS(1336), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75807,108 +76069,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16374] = 5, + [16536] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(776), 1, - sym_text_interpolation, - ACTIONS(1670), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1668), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(1685), 1, + sym_name, + ACTIONS(1691), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1694), 1, + anon_sym_BSLASH, + ACTIONS(1697), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - [16426] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(777), 1, + ACTIONS(1699), 1, + anon_sym_LPAREN, + ACTIONS(1702), 1, + anon_sym_array, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1711), 1, + anon_sym_DOLLAR, + STATE(1239), 1, + sym_class_constant_access_expression, + STATE(1333), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2075), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(1708), 2, + sym_heredoc, + sym_string, + STATE(779), 2, sym_text_interpolation, - ACTIONS(1674), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1672), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - [16478] = 5, + aux_sym_use_list_repeat1, + STATE(1243), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1861), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(1688), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1323), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1241), 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, + [16624] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(778), 1, + STATE(780), 1, sym_text_interpolation, - ACTIONS(1473), 10, + ACTIONS(1716), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75919,7 +76152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 28, + ACTIONS(1714), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75948,14 +76181,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16530] = 5, + [16676] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(779), 1, + STATE(781), 1, sym_text_interpolation, - ACTIONS(1678), 10, + ACTIONS(1720), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -75966,7 +76199,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1676), 28, + ACTIONS(1718), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -75995,14 +76228,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16582] = 5, + [16728] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(780), 1, + STATE(782), 1, sym_text_interpolation, - ACTIONS(1682), 10, + ACTIONS(1724), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -76013,7 +76246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 28, + ACTIONS(1722), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76042,14 +76275,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16634] = 5, + [16780] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(781), 1, + STATE(783), 1, sym_text_interpolation, - ACTIONS(1686), 10, + ACTIONS(1728), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -76060,7 +76293,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1684), 28, + ACTIONS(1726), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76089,14 +76322,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16686] = 5, + [16832] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(782), 1, + STATE(784), 1, sym_text_interpolation, - ACTIONS(1690), 10, + ACTIONS(1732), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -76107,7 +76340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 28, + ACTIONS(1730), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76136,79 +76369,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16738] = 23, + [16884] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1698), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1701), 1, - anon_sym_BSLASH, - ACTIONS(1704), 1, - anon_sym_RBRACE, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1709), 1, - anon_sym_array, - ACTIONS(1712), 1, - anon_sym_LBRACK, - ACTIONS(1718), 1, - anon_sym_DOLLAR, - STATE(1233), 1, - sym_class_constant_access_expression, - STATE(1335), 1, - sym__dereferencable_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(2012), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(1715), 2, - sym_heredoc, - sym_string, - STATE(783), 2, - sym_text_interpolation, - aux_sym_use_list_repeat1, - STATE(1247), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1824), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(1695), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1354), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1240), 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, - [16826] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(784), 1, + STATE(785), 1, sym_text_interpolation, - ACTIONS(1723), 10, + ACTIONS(1342), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -76219,7 +76387,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1721), 28, + ACTIONS(1340), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76248,17 +76416,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16878] = 5, + [16936] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(785), 1, + STATE(786), 1, sym_text_interpolation, - ACTIONS(1727), 10, + ACTIONS(964), 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, @@ -76266,18 +76435,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1725), 28, + ACTIONS(962), 26, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON, + 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, @@ -76295,14 +76462,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16930] = 5, + [16987] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(786), 1, + STATE(787), 1, sym_text_interpolation, - ACTIONS(993), 11, + ACTIONS(998), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -76314,7 +76481,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(991), 26, + ACTIONS(996), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -76341,95 +76508,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16981] = 5, + [17038] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(787), 1, - sym_text_interpolation, - ACTIONS(953), 11, + ACTIONS(1736), 1, anon_sym_AMP, + ACTIONS(1738), 1, anon_sym_QMARK, + ACTIONS(1740), 1, 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(951), 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, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(1764), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1768), 1, anon_sym_DOT, - anon_sym_PERCENT, - [17032] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, STATE(788), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 14, + ACTIONS(1734), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -76438,39 +76571,119 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, 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, - [17106] = 9, + [17124] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(276), 1, + anon_sym_list, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(581), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1774), 1, + sym_name, STATE(789), 1, sym_text_interpolation, - ACTIONS(1733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, + STATE(1323), 1, + sym_class_constant_access_expression, + STATE(1333), 1, + sym__dereferencable_expression, + STATE(1629), 1, + sym__list_destructing, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2075), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(1243), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1241), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1232), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1186), 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, + [17212] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1736), 1, anon_sym_AMP, + ACTIONS(1738), 1, anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(790), 1, + sym_text_interpolation, + ACTIONS(1742), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 22, + ACTIONS(1760), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1776), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -76479,36 +76692,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, 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, - [17164] = 8, + [17292] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - STATE(790), 1, + STATE(791), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1473), 8, + ACTIONS(1478), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -76517,7 +76719,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 23, + ACTIONS(1473), 23, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -76541,79 +76743,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [17220] = 23, + [17348] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, - aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - STATE(791), 1, + STATE(792), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1739), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1753), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [17306] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1769), 1, - anon_sym_STAR_STAR, - STATE(792), 1, - sym_text_interpolation, - ACTIONS(1723), 10, + ACTIONS(1478), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -76622,17 +76769,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1721), 25, + ACTIONS(1473), 22, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -76648,48 +76792,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17358] = 15, + [17406] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, STATE(793), 1, sym_text_interpolation, - ACTIONS(1473), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1478), 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(1739), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 15, + ACTIONS(1473), 20, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -76705,39 +76837,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [17428] = 12, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [17466] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, STATE(794), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1473), 5, + ACTIONS(1478), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 19, + ACTIONS(1473), 19, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -76757,55 +76894,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [17492] = 20, + [17530] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, STATE(795), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1478), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1771), 11, + ACTIONS(1473), 15, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -76814,39 +76942,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, 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, - [17572] = 10, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [17600] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1747), 1, + ACTIONS(1478), 1, + anon_sym_QMARK, + ACTIONS(1736), 1, + anon_sym_AMP, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, STATE(796), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1745), 2, + ACTIONS(1758), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1473), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 20, + ACTIONS(1760), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1473), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -76861,67 +77006,51 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [17632] = 23, + [17674] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1478), 1, + anon_sym_QMARK, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, - aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, STATE(797), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1773), 8, + ACTIONS(1473), 13, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -76930,55 +77059,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [17718] = 20, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [17750] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, + aux_sym_binary_expression_token2, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, STATE(798), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1775), 11, + ACTIONS(1473), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -76987,64 +77123,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [17798] = 23, + [17832] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, STATE(799), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1777), 8, + ACTIONS(1473), 9, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77053,114 +77186,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [17884] = 23, + aux_sym_binary_expression_token3, + [17916] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, - aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, + ACTIONS(1778), 1, + anon_sym_STAR_STAR, STATE(800), 1, sym_text_interpolation, - ACTIONS(1733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1732), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1741), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1779), 8, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1730), 25, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - [17970] = 18, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [17968] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, STATE(801), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 13, + ACTIONS(1473), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77169,62 +77290,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, 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, - [18046] = 21, + [18048] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1782), 1, anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, STATE(802), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 10, + ACTIONS(1780), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77233,61 +77350,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [18128] = 22, + [18128] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, + STATE(803), 1, + sym_text_interpolation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 8, + anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1757), 1, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1473), 25, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, aux_sym_binary_expression_token2, - ACTIONS(1763), 1, + aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, anon_sym_AMP_AMP, - STATE(803), 1, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [18182] = 16, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1736), 1, + anon_sym_AMP, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(804), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1478), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 9, + ACTIONS(1473), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77296,62 +77450,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - [18212] = 23, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [18254] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, - aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - STATE(804), 1, + STATE(805), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1478), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1781), 8, + ACTIONS(1473), 15, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77360,61 +77503,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18298] = 23, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [18322] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - STATE(805), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(806), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1783), 8, + ACTIONS(1784), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77423,61 +77573,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18384] = 23, + [18408] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - STATE(806), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(807), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1785), 8, + ACTIONS(1786), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77486,55 +77636,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18470] = 20, + [18494] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1790), 1, anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - STATE(807), 1, + STATE(808), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 11, + ACTIONS(1788), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77546,55 +77696,55 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [18550] = 20, + [18574] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1789), 1, - anon_sym_QMARK, - STATE(808), 1, + STATE(809), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1787), 11, + ACTIONS(1792), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77606,95 +77756,61 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [18630] = 7, + [18654] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_PERCENT, - STATE(809), 1, - sym_text_interpolation, - ACTIONS(1749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, + ACTIONS(1736), 1, anon_sym_AMP, + ACTIONS(1738), 1, anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1471), 25, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [18684] = 16, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, STATE(810), 1, sym_text_interpolation, - ACTIONS(1473), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 14, + ACTIONS(1794), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77703,51 +77819,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + [18740] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1736), 1, + anon_sym_AMP, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - [18756] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1743), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, STATE(811), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1473), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 15, + ACTIONS(1796), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77756,68 +77882,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, 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, - [18824] = 23, + [18826] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, STATE(812), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1791), 8, + ACTIONS(1798), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -77826,189 +77945,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18910] = 24, + [18912] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_EQ_GT, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, STATE(813), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1638), 7, + ACTIONS(1800), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18998] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(271), 1, - anon_sym_list, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1632), 1, - anon_sym_LPAREN, - ACTIONS(1795), 1, - sym_name, - STATE(814), 1, - sym_text_interpolation, - STATE(1335), 1, - sym__dereferencable_expression, - STATE(1354), 1, - sym_class_constant_access_expression, - STATE(1514), 1, - sym__list_destructing, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(2012), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(1247), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1240), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1224), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1174), 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, - [19086] = 23, + [18998] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - STATE(815), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(814), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1797), 8, + ACTIONS(1802), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78017,61 +78071,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [19172] = 23, + [19084] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - STATE(816), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(815), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1799), 8, + ACTIONS(1804), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78080,124 +78134,119 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [19258] = 23, + [19170] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - STATE(817), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + ACTIONS(1806), 1, + anon_sym_EQ_GT, + STATE(816), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1801), 8, + ACTIONS(1679), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [19344] = 23, + [19258] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, - aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - STATE(818), 1, + STATE(817), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1803), 8, + ACTIONS(1808), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78206,107 +78255,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [19430] = 6, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [19338] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1769), 1, - anon_sym_STAR_STAR, - STATE(819), 1, - sym_text_interpolation, - ACTIONS(1610), 10, + ACTIONS(1736), 1, anon_sym_AMP, + ACTIONS(1738), 1, anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 25, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19482] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, - aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - STATE(820), 1, + STATE(818), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1805), 8, + ACTIONS(1812), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78315,61 +78321,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [19568] = 23, + [19424] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - STATE(821), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(819), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1807), 8, + ACTIONS(1814), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78378,55 +78384,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [19654] = 20, + [19510] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, + aux_sym_binary_expression_token2, + ACTIONS(1748), 1, + aux_sym_binary_expression_token3, + ACTIONS(1750), 1, + aux_sym_binary_expression_token4, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - STATE(822), 1, + STATE(820), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1809), 11, + ACTIONS(1816), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78435,58 +78447,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [19734] = 20, + [19596] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, + aux_sym_binary_expression_token2, + ACTIONS(1748), 1, + aux_sym_binary_expression_token3, + ACTIONS(1750), 1, + aux_sym_binary_expression_token4, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1813), 1, - anon_sym_QMARK, - STATE(823), 1, + STATE(821), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1811), 11, + ACTIONS(1599), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78495,64 +78510,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [19814] = 23, + [19682] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1778), 1, + anon_sym_STAR_STAR, + STATE(822), 1, + sym_text_interpolation, + ACTIONS(1661), 10, anon_sym_AMP, - ACTIONS(1731), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1735), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1659), 25, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - ACTIONS(1743), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1747), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1751), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, + [19734] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1736), 1, + anon_sym_AMP, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - STATE(824), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(823), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1815), 8, + ACTIONS(1818), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78561,63 +78619,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [19900] = 24, + [19820] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(271), 1, + ACTIONS(276), 1, anon_sym_list, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1632), 1, + ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1774), 1, sym_name, - STATE(825), 1, + STATE(824), 1, sym_text_interpolation, - STATE(1335), 1, - sym__dereferencable_expression, - STATE(1354), 1, + STATE(1323), 1, sym_class_constant_access_expression, - STATE(1862), 1, + STATE(1333), 1, + sym__dereferencable_expression, + STATE(1939), 1, sym__list_destructing, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, + STATE(2075), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(1247), 2, + STATE(1243), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(275), 3, + ACTIONS(280), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1240), 3, + STATE(1241), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(1249), 4, + STATE(1246), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1189), 7, + STATE(1221), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -78625,61 +78683,61 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [19988] = 23, + [19908] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - STATE(826), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(825), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1817), 8, + ACTIONS(1820), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78688,55 +78746,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [20074] = 20, + [19994] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, + aux_sym_binary_expression_token2, + ACTIONS(1748), 1, + aux_sym_binary_expression_token3, + ACTIONS(1750), 1, + aux_sym_binary_expression_token4, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(1821), 1, - anon_sym_QMARK, - STATE(827), 1, + STATE(826), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1819), 11, + ACTIONS(1822), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78745,64 +78809,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [20154] = 23, + [20080] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_PERCENT, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - STATE(828), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1772), 1, + anon_sym_PERCENT, + STATE(827), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1725), 8, + ACTIONS(1824), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78811,61 +78872,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [20240] = 23, + [20166] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, - aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - STATE(829), 1, + STATE(828), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1749), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1823), 8, + ACTIONS(1826), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78874,117 +78929,127 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [20326] = 23, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [20246] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1772), 1, anon_sym_PERCENT, - STATE(830), 1, + STATE(829), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1770), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1773), 7, + ACTIONS(1828), 8, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_RBRACK, aux_sym_binary_expression_token1, - [20411] = 20, + [20332] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1841), 1, + ACTIONS(1840), 1, + aux_sym_binary_expression_token2, + ACTIONS(1842), 1, + aux_sym_binary_expression_token3, + ACTIONS(1844), 1, + aux_sym_binary_expression_token4, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(831), 1, + STATE(830), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1775), 10, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -78992,64 +79057,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [20490] = 23, + [20417] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(581), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(857), 1, + anon_sym_LBRACK, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1774), 1, + sym_name, + STATE(831), 1, + sym_text_interpolation, + STATE(1323), 1, + sym_class_constant_access_expression, + STATE(1333), 1, + sym__dereferencable_expression, + STATE(1930), 1, + sym__array_destructing, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2075), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(1243), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1241), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1242), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1204), 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, + [20502] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, - anon_sym_QMARK, - ACTIONS(1829), 1, - anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, - aux_sym_binary_expression_token2, - ACTIONS(1837), 1, - aux_sym_binary_expression_token3, - ACTIONS(1839), 1, - aux_sym_binary_expression_token4, - ACTIONS(1841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, - anon_sym_AMP_AMP, - ACTIONS(1845), 1, - anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, STATE(832), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1478), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1781), 7, + ACTIONS(1473), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79057,123 +79166,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [20575] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1825), 1, - anon_sym_AMP, - ACTIONS(1827), 1, - anon_sym_QMARK, - ACTIONS(1829), 1, - anon_sym_PIPE, - ACTIONS(1833), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, anon_sym_CARET, - ACTIONS(1853), 1, - anon_sym_GT_EQ, - ACTIONS(1857), 1, - anon_sym_DOT, - ACTIONS(1861), 1, - anon_sym_PERCENT, + [20571] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1868), 1, + anon_sym_STAR_STAR, STATE(833), 1, sym_text_interpolation, - ACTIONS(1831), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1661), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1851), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1805), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1659), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [20660] = 23, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20622] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, STATE(834), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1823), 7, + ACTIONS(1599), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79181,61 +79280,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [20745] = 23, + [20707] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, STATE(835), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1777), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79243,55 +79342,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [20830] = 20, + [20792] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1821), 1, - anon_sym_QMARK, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1829), 1, + ACTIONS(1832), 1, + anon_sym_QMARK, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1841), 1, + ACTIONS(1840), 1, + aux_sym_binary_expression_token2, + ACTIONS(1842), 1, + aux_sym_binary_expression_token3, + ACTIONS(1844), 1, + aux_sym_binary_expression_token4, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, STATE(836), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1819), 10, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79299,64 +79404,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [20909] = 23, + [20877] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, STATE(837), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1779), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79364,61 +79466,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [20994] = 23, + [20962] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1870), 1, + sym_name, + ACTIONS(1872), 1, + aux_sym_class_declaration_token1, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + STATE(838), 1, + sym_text_interpolation, + STATE(1361), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2013), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(633), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1323), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(629), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(631), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1241), 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, + [21047] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(838), 1, + STATE(839), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1817), 7, + ACTIONS(1798), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79426,61 +79590,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21079] = 23, + [21132] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(839), 1, + STATE(840), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1797), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79488,61 +79652,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21164] = 23, + [21217] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(840), 1, + STATE(841), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1753), 7, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79550,61 +79714,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21249] = 23, + [21302] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(841), 1, + STATE(842), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1803), 7, + ACTIONS(1796), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79612,61 +79776,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21334] = 23, + [21387] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(842), 1, + STATE(843), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1783), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79674,55 +79838,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21419] = 20, + [21472] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, - anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1478), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, - anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(843), 1, + STATE(844), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1809), 10, + ACTIONS(1473), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79730,64 +79888,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [21498] = 23, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [21545] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, - anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1478), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, - aux_sym_binary_expression_token2, - ACTIONS(1837), 1, - aux_sym_binary_expression_token3, - ACTIONS(1839), 1, - aux_sym_binary_expression_token4, - ACTIONS(1841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(844), 1, + STATE(845), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1815), 7, + ACTIONS(1473), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79795,61 +79946,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21583] = 23, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [21620] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(845), 1, + STATE(846), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1725), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79857,55 +80013,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21668] = 20, + [21705] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1813), 1, - anon_sym_QMARK, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1829), 1, + ACTIONS(1832), 1, + anon_sym_QMARK, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1841), 1, + ACTIONS(1840), 1, + aux_sym_binary_expression_token2, + ACTIONS(1842), 1, + aux_sym_binary_expression_token3, + ACTIONS(1844), 1, + aux_sym_binary_expression_token4, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(846), 1, + STATE(847), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1811), 10, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79913,64 +80075,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [21747] = 23, + [21790] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, - aux_sym_binary_expression_token3, - ACTIONS(1839), 1, - aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(847), 1, + STATE(848), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1807), 7, + ACTIONS(1473), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79978,110 +80133,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21832] = 23, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [21871] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, - anon_sym_QMARK, - ACTIONS(1829), 1, - anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, - aux_sym_binary_expression_token2, - ACTIONS(1837), 1, - aux_sym_binary_expression_token3, - ACTIONS(1839), 1, - aux_sym_binary_expression_token4, - ACTIONS(1841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, - anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(848), 1, + STATE(849), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1478), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1791), 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, - [21917] = 16, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1825), 1, - anon_sym_AMP, - ACTIONS(1845), 1, - anon_sym_CARET, - ACTIONS(1853), 1, - anon_sym_GT_EQ, - ACTIONS(1857), 1, - anon_sym_DOT, - ACTIONS(1861), 1, - anon_sym_PERCENT, - STATE(849), 1, - sym_text_interpolation, - ACTIONS(1473), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1831), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1847), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1855), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1851), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1849), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 13, + ACTIONS(1473), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80095,61 +80190,55 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [21988] = 23, + [21942] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, - aux_sym_binary_expression_token2, - ACTIONS(1837), 1, - aux_sym_binary_expression_token3, - ACTIONS(1839), 1, - aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, STATE(850), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1785), 7, + ACTIONS(1826), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80157,117 +80246,126 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [22073] = 23, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [22021] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(852), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1632), 1, + ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1876), 1, sym_name, + ACTIONS(1880), 1, + aux_sym_class_declaration_token1, + ACTIONS(1882), 1, + anon_sym_DOLLAR, STATE(851), 1, sym_text_interpolation, - STATE(1335), 1, + STATE(1322), 1, sym__dereferencable_expression, - STATE(1354), 1, - sym_class_constant_access_expression, - STATE(1849), 1, - sym__array_destructing, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - ACTIONS(574), 2, + STATE(1994), 1, + sym__scope_resolution_qualifier, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(1247), 2, + STATE(707), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(275), 3, + STATE(1323), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(1878), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1240), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1250), 4, - sym_cast_variable, + STATE(705), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(710), 3, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1186), 7, + STATE(1241), 7, + sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [22158] = 20, + sym_array_creation_expression, + sym__string, + [22106] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1841), 1, + ACTIONS(1840), 1, + aux_sym_binary_expression_token2, + ACTIONS(1842), 1, + aux_sym_binary_expression_token3, + ACTIONS(1844), 1, + aux_sym_binary_expression_token4, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, STATE(852), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1771), 10, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80275,142 +80373,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [22237] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_STAR_STAR, - STATE(853), 1, - sym_text_interpolation, - ACTIONS(1723), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1721), 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, - [22288] = 24, + [22191] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, - anon_sym_AMP, - ACTIONS(1827), 1, - anon_sym_QMARK, - ACTIONS(1829), 1, - anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, - aux_sym_binary_expression_token2, - ACTIONS(1837), 1, - aux_sym_binary_expression_token3, - ACTIONS(1839), 1, - aux_sym_binary_expression_token4, - ACTIONS(1841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, - anon_sym_AMP_AMP, - ACTIONS(1845), 1, - anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1865), 1, - anon_sym_EQ_GT, - STATE(854), 1, + STATE(853), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1478), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1638), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [22375] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1861), 1, - anon_sym_PERCENT, - STATE(855), 1, - sym_text_interpolation, - ACTIONS(1831), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1859), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 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(1471), 22, + ACTIONS(1473), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80425,92 +80426,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [22430] = 9, + [22258] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_DOT, - ACTIONS(1861), 1, - anon_sym_PERCENT, - STATE(856), 1, - sym_text_interpolation, - ACTIONS(1831), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1859), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, + ACTIONS(1830), 1, anon_sym_AMP, + ACTIONS(1832), 1, anon_sym_QMARK, + ACTIONS(1834), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1471), 21, - 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, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, anon_sym_AMP_AMP, + ACTIONS(1850), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(1858), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22487] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(857), 1, + STATE(854), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1855), 2, + ACTIONS(1852), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1473), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 19, + ACTIONS(1854), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1473), 8, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80518,109 +80486,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [22546] = 12, + [22341] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1853), 1, - anon_sym_GT_EQ, - ACTIONS(1857), 1, - anon_sym_DOT, - ACTIONS(1861), 1, - anon_sym_PERCENT, - STATE(858), 1, - sym_text_interpolation, - ACTIONS(1831), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1855), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1851), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1473), 5, + ACTIONS(1830), 1, anon_sym_AMP, + ACTIONS(1832), 1, anon_sym_QMARK, + ACTIONS(1834), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1471), 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, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, anon_sym_AMP_AMP, + ACTIONS(1850), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22609] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1825), 1, - anon_sym_AMP, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(859), 1, + STATE(855), 1, sym_text_interpolation, - ACTIONS(1473), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 14, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80628,225 +80549,118 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [22678] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1863), 1, - anon_sym_STAR_STAR, - STATE(860), 1, - sym_text_interpolation, - ACTIONS(1610), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 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, - [22729] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1632), 1, - anon_sym_LPAREN, - ACTIONS(1867), 1, - sym_name, - ACTIONS(1871), 1, - aux_sym_class_declaration_token1, - ACTIONS(1873), 1, - anon_sym_DOLLAR, - STATE(861), 1, - sym_text_interpolation, - STATE(1342), 1, - sym__dereferencable_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(1989), 1, - sym_namespace_name_as_prefix, - STATE(2056), 1, - sym__scope_resolution_qualifier, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(710), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1354), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1869), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(708), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(709), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(1240), 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, - [22814] = 23, + [22426] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(862), 1, + ACTIONS(1884), 1, + anon_sym_EQ_GT, + STATE(856), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1801), 7, + ACTIONS(1679), 6, 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, - [22899] = 17, + [22513] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1829), 1, + ACTIONS(1832), 1, + anon_sym_QMARK, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1845), 1, + ACTIONS(1838), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, + anon_sym_AMP_AMP, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(863), 1, + STATE(857), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 13, + ACTIONS(1473), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80854,51 +80668,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [22972] = 14, + [22592] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1853), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1832), 1, + anon_sym_QMARK, + ACTIONS(1834), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1840), 1, + aux_sym_binary_expression_token2, + ACTIONS(1842), 1, + aux_sym_binary_expression_token3, + ACTIONS(1844), 1, + aux_sym_binary_expression_token4, + ACTIONS(1846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, + anon_sym_AMP_AMP, + ACTIONS(1850), 1, + anon_sym_CARET, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(864), 1, + STATE(858), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1473), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 14, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80906,120 +80733,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [23039] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1632), 1, - anon_sym_LPAREN, - ACTIONS(1875), 1, - sym_name, - ACTIONS(1877), 1, - aux_sym_class_declaration_token1, - ACTIONS(1879), 1, - anon_sym_DOLLAR, - STATE(865), 1, - sym_text_interpolation, - STATE(1329), 1, - sym__dereferencable_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(2011), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(613), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1354), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(631), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(634), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1240), 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, - [23124] = 18, + [22677] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1829), 1, + ACTIONS(1832), 1, + anon_sym_QMARK, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1843), 1, + ACTIONS(1838), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(866), 1, + STATE(859), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 12, + ACTIONS(1776), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -81027,62 +80789,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [23199] = 21, + [22756] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1841), 1, + ACTIONS(1842), 1, + aux_sym_binary_expression_token3, + ACTIONS(1844), 1, + aux_sym_binary_expression_token4, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(867), 1, + STATE(860), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 9, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -81090,61 +80854,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [23280] = 22, + [22841] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, - anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, - aux_sym_binary_expression_token2, - ACTIONS(1839), 1, - aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(868), 1, + STATE(861), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 8, + ACTIONS(1808), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -81152,115 +80910,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - [23363] = 20, + aux_sym_binary_expression_token4, + [22920] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1868), 1, + anon_sym_STAR_STAR, + STATE(862), 1, + sym_text_interpolation, + ACTIONS(1732), 10, anon_sym_AMP, - ACTIONS(1827), 1, anon_sym_QMARK, - ACTIONS(1829), 1, anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, - anon_sym_AMP_AMP, - ACTIONS(1845), 1, - anon_sym_CARET, - ACTIONS(1853), 1, - anon_sym_GT_EQ, - ACTIONS(1857), 1, - anon_sym_DOT, - ACTIONS(1861), 1, - anon_sym_PERCENT, - STATE(869), 1, - sym_text_interpolation, - ACTIONS(1831), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1847), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1859), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1851), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1730), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_RBRACK, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [23442] = 20, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22971] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1782), 1, anon_sym_QMARK, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(870), 1, + STATE(863), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1787), 10, + ACTIONS(1780), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -81271,19 +81017,22 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [23521] = 7, + [23050] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(871), 1, + STATE(864), 1, sym_text_interpolation, - ACTIONS(1859), 2, + ACTIONS(1836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1473), 8, + ACTIONS(1478), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81292,13 +81041,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 24, + ACTIONS(1473), 22, 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, @@ -81317,61 +81064,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [23574] = 23, + [23105] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1861), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(872), 1, + STATE(865), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1859), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1799), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -81379,14 +81126,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [23659] = 5, + [23190] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(873), 1, - sym_text_interpolation, - ACTIONS(1610), 10, + ACTIONS(1862), 1, + anon_sym_DOT, + ACTIONS(1866), 1, + anon_sym_PERCENT, + STATE(866), 1, + sym_text_interpolation, + ACTIONS(1836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1864), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81395,16 +81152,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 24, - sym__automatic_semicolon, + ACTIONS(1473), 21, 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, @@ -81420,34 +81174,163 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23707] = 5, + [23247] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(874), 1, - sym_text_interpolation, - ACTIONS(1588), 10, + ACTIONS(1830), 1, anon_sym_AMP, + ACTIONS(1832), 1, anon_sym_QMARK, + ACTIONS(1834), 1, anon_sym_PIPE, + ACTIONS(1838), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1840), 1, + aux_sym_binary_expression_token2, + ACTIONS(1842), 1, + aux_sym_binary_expression_token3, + ACTIONS(1844), 1, + aux_sym_binary_expression_token4, + ACTIONS(1846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, + anon_sym_AMP_AMP, + ACTIONS(1850), 1, + anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_GT_EQ, + ACTIONS(1862), 1, + anon_sym_DOT, + ACTIONS(1866), 1, + anon_sym_PERCENT, + STATE(867), 1, + sym_text_interpolation, + ACTIONS(1836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1860), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1864), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(1854), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1794), 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, + [23332] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1832), 1, + anon_sym_QMARK, + ACTIONS(1834), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, + anon_sym_AMP_AMP, + ACTIONS(1850), 1, + anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_GT_EQ, + ACTIONS(1862), 1, + anon_sym_DOT, + ACTIONS(1866), 1, + anon_sym_PERCENT, + STATE(868), 1, + sym_text_interpolation, + ACTIONS(1836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1852), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1860), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1586), 24, - sym__automatic_semicolon, + ACTIONS(1856), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1854), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1792), 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, + [23411] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1862), 1, + anon_sym_DOT, + ACTIONS(1866), 1, + anon_sym_PERCENT, + STATE(869), 1, + sym_text_interpolation, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1860), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1864), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 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(1473), 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, @@ -81461,18 +81344,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + [23470] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1790), 1, + anon_sym_QMARK, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1834), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, + anon_sym_AMP_AMP, + ACTIONS(1850), 1, + anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_GT_EQ, + ACTIONS(1862), 1, anon_sym_DOT, + ACTIONS(1866), 1, anon_sym_PERCENT, - [23755] = 5, + STATE(870), 1, + sym_text_interpolation, + ACTIONS(1836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1852), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1860), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1864), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1856), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1854), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1788), 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, + [23549] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(875), 1, + ACTIONS(1866), 1, + anon_sym_PERCENT, + STATE(871), 1, sym_text_interpolation, - ACTIONS(1660), 10, + ACTIONS(1864), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81481,16 +81424,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 24, - sym__automatic_semicolon, + ACTIONS(1473), 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, @@ -81507,131 +81449,126 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [23803] = 18, + [23602] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1881), 1, - anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(876), 1, + STATE(872), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1864), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 11, - sym__automatic_semicolon, + ACTIONS(1478), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1473), 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, - [23877] = 22, + 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, + [23665] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - STATE(877), 1, + STATE(873), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 7, + ACTIONS(1786), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [23959] = 5, + [23749] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(878), 1, + STATE(874), 1, sym_text_interpolation, - ACTIONS(1341), 10, + ACTIONS(1505), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81642,7 +81579,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1339), 24, + ACTIONS(1503), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81667,14 +81604,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24007] = 5, + [23797] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(879), 1, + STATE(875), 1, sym_text_interpolation, - ACTIONS(1614), 10, + ACTIONS(1649), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81685,7 +81622,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1612), 24, + ACTIONS(1647), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81710,234 +81647,258 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24055] = 20, + [23845] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - STATE(880), 1, + STATE(876), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 9, + ACTIONS(1784), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [24133] = 20, + [23929] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - STATE(881), 1, + STATE(877), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1787), 9, + ACTIONS(1820), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [24211] = 5, + [24013] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(882), 1, - sym_text_interpolation, - ACTIONS(1337), 10, + ACTIONS(1886), 1, anon_sym_AMP, + ACTIONS(1888), 1, anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1335), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, + ACTIONS(1906), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(878), 1, + sym_text_interpolation, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1912), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24259] = 23, + ACTIONS(1804), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [24097] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(883), 1, + STATE(879), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1725), 6, + ACTIONS(1824), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [24343] = 5, + [24181] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(884), 1, + STATE(880), 1, sym_text_interpolation, - ACTIONS(1644), 10, + ACTIONS(1346), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81948,7 +81909,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 24, + ACTIONS(1344), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81973,19 +81934,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24391] = 7, + [24229] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_PERCENT, - STATE(885), 1, + STATE(881), 1, sym_text_interpolation, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, + ACTIONS(1661), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81994,7 +81950,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 23, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1659), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82018,31 +81976,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [24443] = 5, + anon_sym_PERCENT, + [24277] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(886), 1, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(882), 1, sym_text_interpolation, - ACTIONS(1727), 10, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1725), 24, + ACTIONS(1910), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1473), 13, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -82052,57 +82029,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + [24343] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, + anon_sym_AMP_AMP, + ACTIONS(1906), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(883), 1, + sym_text_interpolation, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1912), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24491] = 16, + ACTIONS(1816), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [24427] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - STATE(887), 1, + STATE(884), 1, sym_text_interpolation, - ACTIONS(1473), 2, + ACTIONS(1478), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 12, + ACTIONS(1473), 12, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82115,14 +82144,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [24561] = 5, + [24497] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(888), 1, + STATE(885), 1, sym_text_interpolation, - ACTIONS(1652), 10, + ACTIONS(1338), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82133,7 +82162,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 24, + ACTIONS(1336), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82158,14 +82187,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24609] = 5, + [24545] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(889), 1, + STATE(886), 1, sym_text_interpolation, - ACTIONS(1686), 10, + ACTIONS(1657), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82176,7 +82205,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1684), 24, + ACTIONS(1655), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82201,53 +82230,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24657] = 17, + [24593] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1881), 1, + STATE(887), 1, + sym_text_interpolation, + ACTIONS(1653), 10, anon_sym_AMP, - ACTIONS(1883), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - STATE(890), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 12, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1651), 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, @@ -82256,111 +82263,105 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [24729] = 23, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [24641] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(891), 1, + STATE(888), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1815), 6, + 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, - [24813] = 15, + [24725] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_AMP, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - STATE(892), 1, + STATE(889), 1, sym_text_interpolation, - ACTIONS(1473), 2, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 8, + anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 13, + ACTIONS(1473), 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, @@ -82370,75 +82371,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [24881] = 23, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [24777] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1924), 1, + anon_sym_STAR_STAR, + STATE(890), 1, + sym_text_interpolation, + ACTIONS(1661), 10, anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(893), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1823), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1659), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - [24965] = 5, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [24827] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(894), 1, + STATE(891), 1, sym_text_interpolation, - ACTIONS(1670), 10, + ACTIONS(1597), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82449,7 +82441,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1668), 24, + ACTIONS(1595), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82474,194 +82466,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25013] = 21, + [24875] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1782), 1, + anon_sym_QMARK, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - STATE(895), 1, + STATE(892), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 8, + ACTIONS(1780), 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, - [25093] = 22, + [24953] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1632), 1, - anon_sym_LPAREN, - ACTIONS(1795), 1, - sym_name, - STATE(896), 1, - sym_text_interpolation, - STATE(1335), 1, - sym__dereferencable_expression, - STATE(1354), 1, - sym_class_constant_access_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(2012), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(1247), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1240), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1219), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1180), 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, - [25175] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(897), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1801), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, + ACTIONS(1926), 1, aux_sym_binary_expression_token1, - [25259] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(898), 1, + STATE(893), 1, sym_text_interpolation, - ACTIONS(1674), 10, + ACTIONS(1619), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82672,7 +82544,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1672), 24, + ACTIONS(1617), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82680,7 +82552,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -82697,66 +82568,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25307] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - STATE(899), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1895), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 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, - [25373] = 5, + [25003] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(900), 1, + STATE(894), 1, sym_text_interpolation, - ACTIONS(1636), 10, + ACTIONS(1645), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82767,7 +82586,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1634), 24, + ACTIONS(1643), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82792,14 +82611,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25421] = 5, + [25051] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(595), 1, sym_comment, - STATE(901), 1, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(1928), 1, + sym_name, + ACTIONS(1930), 1, + anon_sym_LPAREN, + STATE(895), 1, + sym_text_interpolation, + STATE(1323), 1, + sym_class_constant_access_expression, + STATE(1348), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2017), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(1253), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1256), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(668), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(630), 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, + [25133] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1882), 1, + anon_sym_DOLLAR, + ACTIONS(1932), 1, + sym_name, + ACTIONS(1934), 1, + anon_sym_LPAREN, + STATE(896), 1, + sym_text_interpolation, + STATE(1323), 1, + sym_class_constant_access_expression, + STATE(1344), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2031), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(1258), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1250), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(745), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(698), 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, + [25215] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(897), 1, sym_text_interpolation, - ACTIONS(1648), 10, + ACTIONS(1593), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82810,7 +82749,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1646), 24, + ACTIONS(1591), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82835,14 +82774,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25469] = 5, + [25263] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(902), 1, + STATE(898), 1, sym_text_interpolation, - ACTIONS(910), 10, + ACTIONS(1619), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82853,7 +82792,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(908), 24, + ACTIONS(1617), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82878,57 +82817,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25517] = 5, + [25311] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(581), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - STATE(903), 1, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1774), 1, + sym_name, + STATE(899), 1, sym_text_interpolation, - ACTIONS(1640), 10, + STATE(1323), 1, + sym_class_constant_access_expression, + STATE(1333), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2075), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(1243), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1241), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1223), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1187), 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, + [25393] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1886), 1, anon_sym_AMP, + ACTIONS(1888), 1, anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, + ACTIONS(1906), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(900), 1, + sym_text_interpolation, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1912), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [25565] = 5, + ACTIONS(1818), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [25477] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(904), 1, + STATE(901), 1, sym_text_interpolation, - ACTIONS(1592), 10, + ACTIONS(1342), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82939,7 +82956,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1590), 24, + ACTIONS(1340), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82964,14 +82981,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25613] = 5, + [25525] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(905), 1, + STATE(902), 1, sym_text_interpolation, - ACTIONS(1333), 10, + ACTIONS(1724), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82982,7 +82999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1331), 24, + ACTIONS(1722), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -83007,120 +83024,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25661] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(906), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1807), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [25745] = 22, + [25573] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1632), 1, + ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1879), 1, + ACTIONS(1874), 1, anon_sym_DOLLAR, - ACTIONS(1919), 1, + ACTIONS(1936), 1, sym_name, - STATE(907), 1, + STATE(903), 1, sym_text_interpolation, - STATE(1337), 1, + STATE(1330), 1, sym__dereferencable_expression, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(1994), 1, + STATE(2020), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(618), 2, + STATE(632), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1354), 2, + STATE(1323), 2, sym_class_constant_access_expression, sym_cast_variable, - ACTIONS(275), 3, + ACTIONS(280), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(614), 3, + STATE(627), 3, sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - STATE(662), 3, + STATE(666), 3, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1240), 7, + STATE(1241), 7, sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, @@ -83128,236 +83084,55 @@ static uint16_t ts_small_parse_table[] = { sym_nullsafe_member_call_expression, sym_array_creation_expression, sym__string, - [25827] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - STATE(908), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1809), 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, - [25905] = 23, + [25655] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(909), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1785), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [25989] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - ACTIONS(1921), 1, - anon_sym_EQ_GT, - STATE(910), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1638), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [26075] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1813), 1, - anon_sym_QMARK, - ACTIONS(1881), 1, - anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - STATE(911), 1, + STATE(904), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1811), 9, + ACTIONS(1473), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -83367,14 +83142,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [26153] = 5, + [25733] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(912), 1, + STATE(905), 1, sym_text_interpolation, - ACTIONS(1626), 10, + ACTIONS(1669), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -83385,7 +83160,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 24, + ACTIONS(1667), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -83410,14 +83185,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26201] = 5, + [25781] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(913), 1, + STATE(906), 1, sym_text_interpolation, - ACTIONS(1656), 10, + ACTIONS(1720), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -83428,7 +83203,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1654), 24, + ACTIONS(1718), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -83453,303 +83228,349 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26249] = 23, + [25829] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(914), 1, + STATE(907), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1783), 6, + ACTIONS(1473), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26333] = 23, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25909] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1478), 1, + anon_sym_QMARK, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(915), 1, + STATE(908), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1781), 6, + ACTIONS(1473), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26417] = 23, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [25983] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1478), 1, + anon_sym_QMARK, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(916), 1, + STATE(909), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1805), 6, + ACTIONS(1473), 12, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26501] = 23, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [26055] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(917), 1, + STATE(910), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1817), 6, + ACTIONS(1473), 7, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26585] = 22, + aux_sym_binary_expression_token3, + [26137] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1882), 1, + anon_sym_DOLLAR, + ACTIONS(1932), 1, + sym_name, + ACTIONS(1934), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym_text_interpolation, + STATE(1323), 1, + sym_class_constant_access_expression, + STATE(1344), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2031), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(1258), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1250), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(746), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(702), 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, + [26219] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1632), 1, + ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1774), 1, sym_name, - STATE(918), 1, + STATE(912), 1, sym_text_interpolation, - STATE(1335), 1, - sym__dereferencable_expression, - STATE(1354), 1, + STATE(1323), 1, sym_class_constant_access_expression, - STATE(1947), 1, + STATE(1333), 1, + sym__dereferencable_expression, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, + STATE(2075), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(1247), 2, + STATE(1243), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(275), 3, + ACTIONS(280), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1240), 3, + STATE(1241), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(1221), 4, + STATE(626), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1179), 7, + STATE(604), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -83757,135 +83578,231 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [26667] = 23, + [26301] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + STATE(913), 1, + sym_text_interpolation, + ACTIONS(1728), 10, anon_sym_AMP, - ACTIONS(1883), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1887), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1726), 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, - ACTIONS(1889), 1, anon_sym_CARET, - ACTIONS(1897), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1901), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(919), 1, + [26349] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(914), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1478), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1773), 6, + ACTIONS(1473), 13, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26751] = 22, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [26417] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(590), 1, + ACTIONS(581), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1632), 1, + ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1873), 1, - anon_sym_DOLLAR, - ACTIONS(1923), 1, + ACTIONS(1774), 1, sym_name, - STATE(920), 1, + STATE(915), 1, sym_text_interpolation, - STATE(1320), 1, + STATE(1323), 1, + sym_class_constant_access_expression, + STATE(1333), 1, sym__dereferencable_expression, - STATE(1947), 1, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(1989), 1, - sym_namespace_name_as_prefix, - STATE(2023), 1, + STATE(2075), 1, sym__scope_resolution_qualifier, - ACTIONS(574), 2, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(693), 2, + STATE(1243), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1354), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1869), 3, + ACTIONS(280), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(698), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(747), 3, + STATE(1241), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1224), 4, + sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1240), 7, - sym_parenthesized_expression, + STATE(1178), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [26833] = 5, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + [26499] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(921), 1, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, + anon_sym_AMP_AMP, + ACTIONS(1906), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(916), 1, + sym_text_interpolation, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1912), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1910), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1822), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [26583] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(917), 1, sym_text_interpolation, - ACTIONS(1500), 10, + ACTIONS(1681), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -83896,7 +83813,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1498), 24, + ACTIONS(1679), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -83921,14 +83838,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26881] = 5, + [26631] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(922), 1, + STATE(918), 1, sym_text_interpolation, - ACTIONS(1604), 10, + ACTIONS(1665), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -83939,7 +83856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 24, + ACTIONS(1663), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -83964,14 +83881,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26929] = 5, + [26679] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(923), 1, + STATE(919), 1, sym_text_interpolation, - ACTIONS(1723), 10, + ACTIONS(1716), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -83982,7 +83899,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1721), 24, + ACTIONS(1714), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -84007,120 +83924,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26977] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(924), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1791), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [27061] = 22, + [26727] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1632), 1, + ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1774), 1, sym_name, - STATE(925), 1, + STATE(920), 1, sym_text_interpolation, - STATE(1335), 1, - sym__dereferencable_expression, - STATE(1354), 1, + STATE(1323), 1, sym_class_constant_access_expression, - STATE(1947), 1, + STATE(1333), 1, + sym__dereferencable_expression, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, + STATE(2075), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(1247), 2, + STATE(1243), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(275), 3, + ACTIONS(280), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1240), 3, + STATE(1241), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(1241), 4, + STATE(1236), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1185), 7, + STATE(1217), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -84128,59 +83984,75 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [27143] = 5, + [26809] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(926), 1, - sym_text_interpolation, - ACTIONS(1618), 10, + ACTIONS(1886), 1, anon_sym_AMP, + ACTIONS(1888), 1, anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1616), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, + ACTIONS(1906), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(921), 1, + sym_text_interpolation, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1912), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [27191] = 6, + ACTIONS(1794), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [26893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1925), 1, - anon_sym_STAR_STAR, - STATE(927), 1, + STATE(922), 1, sym_text_interpolation, - ACTIONS(1723), 10, + ACTIONS(1633), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -84191,13 +84063,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1721), 23, + ACTIONS(1631), 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, @@ -84215,72 +84088,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27241] = 20, + [26941] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - STATE(928), 1, + STATE(923), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1771), 9, + ACTIONS(1734), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27319] = 5, + [27025] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(929), 1, + STATE(924), 1, sym_text_interpolation, - ACTIONS(1682), 10, + ACTIONS(1637), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -84291,7 +84167,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 24, + ACTIONS(1635), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -84316,55 +84192,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27367] = 20, + [27073] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - STATE(930), 1, + STATE(925), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1775), 9, + ACTIONS(1826), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -84374,319 +84250,175 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [27445] = 23, + [27151] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + STATE(926), 1, + sym_text_interpolation, + ACTIONS(1589), 10, anon_sym_AMP, - ACTIONS(1883), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1887), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1587), 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, - ACTIONS(1889), 1, anon_sym_CARET, - ACTIONS(1897), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1901), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + [27199] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1909), 1, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(931), 1, + ACTIONS(1904), 1, + anon_sym_AMP_AMP, + ACTIONS(1906), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(927), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1777), 6, + ACTIONS(1792), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [27529] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1879), 1, - anon_sym_DOLLAR, - ACTIONS(1927), 1, - sym_name, - ACTIONS(1929), 1, - anon_sym_LPAREN, - STATE(932), 1, - sym_text_interpolation, - STATE(1333), 1, - sym__dereferencable_expression, - STATE(1354), 1, - sym_class_constant_access_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(2020), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(1243), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1245), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(665), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(617), 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, - [27611] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1795), 1, - sym_name, - STATE(933), 1, - sym_text_interpolation, - STATE(1349), 1, - sym__dereferencable_expression, - STATE(1354), 1, - sym_class_constant_access_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(2012), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(1247), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1240), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(632), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(604), 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, - [27693] = 23, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [27277] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1790), 1, + anon_sym_QMARK, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(934), 1, + STATE(928), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1779), 6, + ACTIONS(1788), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [27777] = 23, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [27355] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + STATE(929), 1, + sym_text_interpolation, + ACTIONS(1605), 10, anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(935), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1753), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [27861] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(936), 1, - sym_text_interpolation, - ACTIONS(1363), 10, - anon_sym_AMP, - anon_sym_QMARK, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84695,7 +84427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1357), 24, + ACTIONS(1603), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -84720,87 +84452,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27909] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1931), 1, - sym_name, - ACTIONS(1933), 1, - anon_sym_LPAREN, - STATE(937), 1, - sym_text_interpolation, - STATE(1310), 1, - sym__dereferencable_expression, - STATE(1354), 1, - sym_class_constant_access_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(2028), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(1236), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1244), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(704), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(670), 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, - [27991] = 10, + [27403] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - STATE(938), 1, + STATE(930), 1, sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, + ACTIONS(1673), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -84809,11 +84468,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 18, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 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, @@ -84828,143 +84491,182 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [28049] = 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [27451] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1821), 1, - anon_sym_QMARK, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - STATE(939), 1, + STATE(931), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1819), 9, + ACTIONS(1828), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28127] = 23, + [27535] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + STATE(932), 1, + sym_text_interpolation, + ACTIONS(1360), 10, anon_sym_AMP, - ACTIONS(1883), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1887), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1354), 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, - ACTIONS(1889), 1, anon_sym_CARET, - ACTIONS(1897), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1901), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, + [27583] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1909), 1, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(940), 1, + ACTIONS(1904), 1, + anon_sym_AMP_AMP, + ACTIONS(1906), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(933), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1803), 6, + ACTIONS(1776), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [28211] = 9, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [27661] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1901), 1, - anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_PERCENT, - STATE(941), 1, + ACTIONS(1924), 1, + anon_sym_STAR_STAR, + STATE(934), 1, sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, + ACTIONS(1732), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -84973,12 +84675,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 20, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1730), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -84994,14 +84699,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - [28267] = 5, + anon_sym_DOT, + anon_sym_PERCENT, + [27711] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(942), 1, + STATE(935), 1, sym_text_interpolation, - ACTIONS(1690), 10, + ACTIONS(1732), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85012,7 +84719,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 24, + ACTIONS(1730), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -85037,14 +84744,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28315] = 5, + [27759] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(943), 1, + STATE(936), 1, sym_text_interpolation, - ACTIONS(1622), 10, + ACTIONS(1515), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85055,7 +84762,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1620), 24, + ACTIONS(1513), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -85080,85 +84787,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28363] = 8, + [27807] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_PERCENT, - STATE(944), 1, - sym_text_interpolation, - ACTIONS(1885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1903), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, + ACTIONS(1886), 1, anon_sym_AMP, + ACTIONS(1888), 1, anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1471), 21, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, + ACTIONS(1906), 1, anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + ACTIONS(1938), 1, + anon_sym_EQ_GT, + STATE(937), 1, + sym_text_interpolation, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1912), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [28417] = 12, + ACTIONS(1679), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [27893] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - STATE(945), 1, + STATE(938), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1473), 5, + ACTIONS(1478), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 17, + ACTIONS(1473), 17, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -85176,16 +84899,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [28479] = 6, + [27955] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1925), 1, - anon_sym_STAR_STAR, - STATE(946), 1, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(939), 1, sym_text_interpolation, - ACTIONS(1610), 10, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85194,15 +84928,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 23, + ACTIONS(1473), 18, 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, @@ -85216,262 +84947,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [28529] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1879), 1, - anon_sym_DOLLAR, - ACTIONS(1927), 1, - sym_name, - ACTIONS(1929), 1, - anon_sym_LPAREN, - STATE(947), 1, - sym_text_interpolation, - STATE(1333), 1, - sym__dereferencable_expression, - STATE(1354), 1, - sym_class_constant_access_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1988), 1, - sym_namespace_name, - STATE(2020), 1, - sym__scope_resolution_qualifier, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(1243), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1245), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(672), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(628), 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, - [28611] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1873), 1, - anon_sym_DOLLAR, - ACTIONS(1935), 1, - sym_name, - ACTIONS(1937), 1, - anon_sym_LPAREN, - STATE(948), 1, - sym_text_interpolation, - STATE(1326), 1, - sym__dereferencable_expression, - STATE(1354), 1, - sym_class_constant_access_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1982), 1, - sym__scope_resolution_qualifier, - STATE(1988), 1, - sym_namespace_name, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(1246), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1237), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(743), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(703), 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, - [28693] = 23, + [28013] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(949), 1, + STATE(940), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1799), 6, + ACTIONS(1599), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [28777] = 23, + [28097] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE, - ACTIONS(1887), 1, - anon_sym_AMP_AMP, - ACTIONS(1889), 1, - anon_sym_CARET, - ACTIONS(1897), 1, - anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1905), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(950), 1, + STATE(941), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1899), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1903), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1893), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1797), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [28861] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1939), 1, - aux_sym_binary_expression_token1, - STATE(951), 1, - sym_text_interpolation, - ACTIONS(1584), 10, + ACTIONS(1478), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85480,16 +85034,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1582), 23, + ACTIONS(1473), 20, 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, @@ -85504,16 +85055,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [28911] = 5, + [28153] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(952), 1, + STATE(942), 1, sym_text_interpolation, - ACTIONS(1473), 10, + ACTIONS(1601), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85524,7 +85073,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1471), 24, + ACTIONS(1599), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -85549,14 +85098,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28959] = 5, + [28201] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(953), 1, + STATE(943), 1, sym_text_interpolation, - ACTIONS(906), 10, + ACTIONS(1609), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85567,7 +85116,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(904), 24, + ACTIONS(1607), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -85592,14 +85141,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29007] = 5, + [28249] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(954), 1, + STATE(944), 1, sym_text_interpolation, - ACTIONS(1518), 10, + ACTIONS(1629), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85610,7 +85159,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1516), 24, + ACTIONS(1627), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -85635,117 +85184,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29055] = 5, + [28297] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(955), 1, - sym_text_interpolation, - ACTIONS(1584), 10, + ACTIONS(1886), 1, anon_sym_AMP, + ACTIONS(1888), 1, anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1582), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, + ACTIONS(1906), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(1914), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1918), 1, anon_sym_DOT, + ACTIONS(1922), 1, anon_sym_PERCENT, - [29103] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(548), 1, - anon_sym_array, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1327), 1, - anon_sym_LBRACK, - ACTIONS(1873), 1, - anon_sym_DOLLAR, - ACTIONS(1935), 1, - sym_name, - ACTIONS(1937), 1, - anon_sym_LPAREN, - STATE(956), 1, + STATE(945), 1, sym_text_interpolation, - STATE(1326), 1, - sym__dereferencable_expression, - STATE(1354), 1, - sym_class_constant_access_expression, - STATE(1947), 1, - sym_relative_scope, - STATE(1982), 1, - sym__scope_resolution_qualifier, - STATE(1988), 1, - sym_namespace_name, - STATE(2034), 1, - sym_namespace_name_as_prefix, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - STATE(1246), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(275), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1237), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(744), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(707), 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, - [29185] = 5, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1912), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1910), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1812), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [28381] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(957), 1, + STATE(946), 1, sym_text_interpolation, - ACTIONS(1664), 10, + ACTIONS(1625), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85756,7 +85263,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 24, + ACTIONS(1623), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -85781,14 +85288,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29233] = 5, + [28429] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(958), 1, + STATE(947), 1, sym_text_interpolation, - ACTIONS(1596), 10, + ACTIONS(1641), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85799,7 +85306,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1594), 24, + ACTIONS(1639), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -85824,31 +85331,157 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29281] = 5, + [28477] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(959), 1, - sym_text_interpolation, - ACTIONS(1678), 10, + ACTIONS(1886), 1, anon_sym_AMP, + ACTIONS(1888), 1, anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1676), 24, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, + anon_sym_AMP_AMP, + ACTIONS(1906), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(948), 1, + sym_text_interpolation, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1912), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1910), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1802), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [28561] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, + anon_sym_AMP_AMP, + ACTIONS(1906), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(949), 1, + sym_text_interpolation, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1916), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1912), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1910), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1800), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [28645] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(950), 1, + sym_text_interpolation, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1920), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 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(1473), 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, @@ -85866,15 +85499,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [29329] = 5, + [28699] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(960), 1, + STATE(951), 1, sym_text_interpolation, - ACTIONS(1600), 10, + ACTIONS(1478), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -85885,7 +85517,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 24, + ACTIONS(1473), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -85910,54 +85542,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29377] = 22, + [28747] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(548), 1, + ACTIONS(553), 1, anon_sym_array, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1327), 1, + ACTIONS(1332), 1, anon_sym_LBRACK, - ACTIONS(1632), 1, + ACTIONS(1444), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1774), 1, sym_name, - STATE(961), 1, + STATE(952), 1, sym_text_interpolation, - STATE(1335), 1, - sym__dereferencable_expression, - STATE(1354), 1, + STATE(1323), 1, sym_class_constant_access_expression, - STATE(1947), 1, + STATE(1368), 1, + sym__dereferencable_expression, + STATE(1949), 1, sym_relative_scope, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2012), 1, + STATE(2075), 1, sym__scope_resolution_qualifier, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - ACTIONS(574), 2, + ACTIONS(579), 2, sym_heredoc, sym_string, - STATE(1247), 2, + STATE(1243), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(275), 3, + ACTIONS(280), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1240), 3, + STATE(1241), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(632), 4, + STATE(626), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, @@ -85970,784 +85602,1133 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [29459] = 23, + [28829] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - STATE(962), 1, + STATE(953), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1817), 5, + ACTIONS(1798), 6, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29542] = 23, + [28913] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(954), 1, + sym_text_interpolation, + ACTIONS(907), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(905), 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, + [28961] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1922), 1, anon_sym_PERCENT, - STATE(963), 1, + STATE(955), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1807), 5, + ACTIONS(1796), 6, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29625] = 23, + [29045] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(1928), 1, + sym_name, + ACTIONS(1930), 1, + anon_sym_LPAREN, + STATE(956), 1, + sym_text_interpolation, + STATE(1323), 1, + sym_class_constant_access_expression, + STATE(1348), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2017), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(1253), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1256), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(669), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(624), 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, + [29127] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + STATE(957), 1, + sym_text_interpolation, + ACTIONS(930), 10, anon_sym_AMP, - ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(928), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1969), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1973), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1977), 1, anon_sym_PERCENT, - STATE(964), 1, + [29175] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(958), 1, + sym_text_interpolation, + ACTIONS(1677), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1675), 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, + [29223] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(286), 1, + anon_sym_DOLLAR, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1940), 1, + sym_name, + ACTIONS(1942), 1, + anon_sym_LPAREN, + STATE(959), 1, + sym_text_interpolation, + STATE(1323), 1, + sym_class_constant_access_expression, + STATE(1324), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(2024), 1, + sym__scope_resolution_qualifier, + STATE(2097), 1, + sym_namespace_name_as_prefix, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(1249), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(280), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1251), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(708), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(672), 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, + [29305] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(553), 1, + anon_sym_array, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1332), 1, + anon_sym_LBRACK, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_DOLLAR, + ACTIONS(1944), 1, + sym_name, + STATE(960), 1, + sym_text_interpolation, + STATE(1374), 1, + sym__dereferencable_expression, + STATE(1949), 1, + sym_relative_scope, + STATE(1991), 1, + sym_namespace_name, + STATE(1993), 1, + sym_namespace_name_as_prefix, + STATE(2018), 1, + sym__scope_resolution_qualifier, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + STATE(712), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1323), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(1878), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(694), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(747), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1241), 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, + [29387] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, + anon_sym_AMP_AMP, + ACTIONS(1906), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1922), 1, + anon_sym_PERCENT, + STATE(961), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1920), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1773), 5, + ACTIONS(1808), 9, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29708] = 23, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [29465] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(965), 1, + STATE(962), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1777), 5, + ACTIONS(1473), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29791] = 23, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [29544] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(966), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(963), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1753), 5, + ACTIONS(1828), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29874] = 23, + [29627] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(967), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(964), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1823), 5, + ACTIONS(1734), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29957] = 23, + [29710] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1984), 1, + anon_sym_STAR_STAR, + STATE(965), 1, + sym_text_interpolation, + ACTIONS(1661), 10, anon_sym_AMP, - ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1659), 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, - ACTIONS(1951), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1969), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1973), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1977), 1, anon_sym_PERCENT, - STATE(968), 1, + [29759] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, + anon_sym_PIPE, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_AMP_AMP, + ACTIONS(1962), 1, + anon_sym_CARET, + ACTIONS(1970), 1, + anon_sym_GT_EQ, + ACTIONS(1974), 1, + anon_sym_DOT, + ACTIONS(1978), 1, + anon_sym_PERCENT, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(966), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1779), 5, + ACTIONS(1804), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [30040] = 20, + [29842] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1957), 1, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(969), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(967), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1809), 8, + ACTIONS(1822), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [30117] = 23, + [29925] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(970), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(968), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1805), 5, + ACTIONS(1784), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [30200] = 20, + [30008] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1813), 1, - anon_sym_QMARK, - ACTIONS(1941), 1, - anon_sym_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1957), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, - anon_sym_AMP_AMP, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(971), 1, + STATE(969), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1478), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1811), 8, + ACTIONS(1473), 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, - [30277] = 23, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [30073] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(972), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(970), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1785), 5, + ACTIONS(1794), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [30360] = 20, + [30156] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, - anon_sym_QMARK, - ACTIONS(1945), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1957), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, - anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(973), 1, + STATE(971), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1478), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1775), 8, + ACTIONS(1473), 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, - [30437] = 20, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [30225] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1957), 1, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(974), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(972), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1771), 8, + ACTIONS(1820), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [30514] = 6, + [30308] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1979), 1, - anon_sym_STAR_STAR, - STATE(975), 1, + ACTIONS(1978), 1, + anon_sym_PERCENT, + STATE(973), 1, sym_text_interpolation, - ACTIONS(1723), 10, + ACTIONS(1976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -86756,14 +86737,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1721), 22, + ACTIONS(1473), 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, @@ -86780,415 +86760,445 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [30563] = 8, + [30359] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1977), 1, - anon_sym_PERCENT, - STATE(976), 1, - sym_text_interpolation, - ACTIONS(1947), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1975), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, + ACTIONS(1946), 1, anon_sym_AMP, + ACTIONS(1948), 1, anon_sym_QMARK, + ACTIONS(1950), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1471), 20, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_AMP_AMP, + ACTIONS(1962), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(1970), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1974), 1, anon_sym_DOT, - [30616] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1973), 1, - anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(977), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(974), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1975), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 19, + ACTIONS(1966), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1812), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + [30442] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, + anon_sym_PIPE, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_AMP_AMP, + ACTIONS(1962), 1, anon_sym_CARET, + ACTIONS(1970), 1, + anon_sym_GT_EQ, + ACTIONS(1974), 1, + anon_sym_DOT, + ACTIONS(1978), 1, + anon_sym_PERCENT, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(975), 1, + sym_text_interpolation, + ACTIONS(1952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1964), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1968), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30671] = 24, + ACTIONS(1818), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [30525] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - ACTIONS(1981), 1, - anon_sym_EQ_GT, - STATE(978), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(976), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1638), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [30756] = 10, + ACTIONS(1786), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [30608] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1973), 1, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, + anon_sym_PIPE, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_AMP_AMP, + ACTIONS(1962), 1, + anon_sym_CARET, + ACTIONS(1970), 1, + anon_sym_GT_EQ, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(979), 1, + STATE(977), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1971), 2, + ACTIONS(1964), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1473), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 17, + ACTIONS(1966), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1792), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [30813] = 23, + [30685] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(980), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(978), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1797), 5, + ACTIONS(1824), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [30896] = 12, + [30768] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(1782), 1, + anon_sym_QMARK, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1950), 1, + anon_sym_PIPE, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_AMP_AMP, + ACTIONS(1962), 1, + anon_sym_CARET, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(981), 1, + STATE(979), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1971), 2, + ACTIONS(1964), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1473), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1471), 16, + ACTIONS(1966), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1780), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [30957] = 23, + [30845] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(982), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(980), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1799), 5, + ACTIONS(1816), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31040] = 15, + [30928] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, - anon_sym_AMP, - ACTIONS(1969), 1, - anon_sym_GT_EQ, - ACTIONS(1973), 1, - anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(983), 1, + STATE(981), 1, sym_text_interpolation, - ACTIONS(1473), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1971), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1478), 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(1965), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 12, + ACTIONS(1473), 20, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -87201,225 +87211,221 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [31107] = 23, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [30981] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(984), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(982), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1781), 5, + ACTIONS(1814), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31190] = 23, + [31064] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, - aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(985), 1, + STATE(983), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1783), 5, + ACTIONS(1826), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31273] = 17, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [31141] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1945), 1, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1961), 1, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_AMP_AMP, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(986), 1, + STATE(984), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 11, + ACTIONS(1473), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [31344] = 18, + [31218] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1941), 1, - anon_sym_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_AMP_AMP, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(987), 1, + STATE(985), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 10, + ACTIONS(1478), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1473), 16, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -87430,509 +87436,623 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - [31417] = 23, + 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, + [31279] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(988), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(986), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1815), 5, + ACTIONS(1599), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31500] = 21, + [31362] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, - anon_sym_AMP, - ACTIONS(1943), 1, - anon_sym_QMARK, - ACTIONS(1945), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, - aux_sym_binary_expression_token2, - ACTIONS(1957), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, - anon_sym_AMP_AMP, - ACTIONS(1961), 1, - anon_sym_CARET, - ACTIONS(1969), 1, - anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(989), 1, + STATE(987), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1478), 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(1965), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1471), 7, + ACTIONS(1473), 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, - [31579] = 22, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [31419] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, - aux_sym_binary_expression_token2, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(990), 1, + STATE(988), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 6, + ACTIONS(1776), 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, - [31660] = 20, + aux_sym_binary_expression_token4, + [31496] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1957), 1, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(991), 1, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(989), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 8, + ACTIONS(1473), 6, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [31737] = 23, + [31577] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1974), 1, + anon_sym_DOT, + ACTIONS(1978), 1, + anon_sym_PERCENT, + STATE(990), 1, + sym_text_interpolation, + ACTIONS(1952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1478), 8, anon_sym_AMP, - ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1473), 19, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1969), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31632] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(992), 1, + STATE(991), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1478), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1801), 5, + ACTIONS(1473), 12, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31820] = 23, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [31699] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, - STATE(993), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(992), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1803), 5, + ACTIONS(1796), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31903] = 6, + [31782] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1979), 1, - anon_sym_STAR_STAR, - STATE(994), 1, - sym_text_interpolation, - ACTIONS(1610), 10, + ACTIONS(1946), 1, anon_sym_AMP, + ACTIONS(1948), 1, anon_sym_QMARK, + ACTIONS(1950), 1, anon_sym_PIPE, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_AMP_AMP, + ACTIONS(1962), 1, + anon_sym_CARET, + ACTIONS(1970), 1, + anon_sym_GT_EQ, + ACTIONS(1974), 1, + anon_sym_DOT, + ACTIONS(1978), 1, + anon_sym_PERCENT, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + ACTIONS(1986), 1, + anon_sym_EQ_GT, + STATE(993), 1, + sym_text_interpolation, + ACTIONS(1952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 22, + ACTIONS(1679), 4, 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, + ACTIONS(1966), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [31867] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, + anon_sym_PIPE, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_AMP_AMP, + ACTIONS(1962), 1, anon_sym_CARET, + ACTIONS(1970), 1, + anon_sym_GT_EQ, + ACTIONS(1974), 1, + anon_sym_DOT, + ACTIONS(1978), 1, + anon_sym_PERCENT, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(994), 1, + sym_text_interpolation, + ACTIONS(1952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1964), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1968), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31952] = 20, + ACTIONS(1798), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [31950] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1789), 1, - anon_sym_QMARK, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1945), 1, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1957), 1, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, STATE(995), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1787), 8, + ACTIONS(1800), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [32029] = 20, + [32033] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1821), 1, + ACTIONS(1790), 1, anon_sym_QMARK, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, STATE(996), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1819), 8, + ACTIONS(1788), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -87941,92 +88061,108 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [32106] = 7, + [32110] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1977), 1, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1950), 1, + anon_sym_PIPE, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_AMP_AMP, + ACTIONS(1962), 1, + anon_sym_CARET, + ACTIONS(1970), 1, + anon_sym_GT_EQ, + ACTIONS(1974), 1, + anon_sym_DOT, + ACTIONS(1978), 1, anon_sym_PERCENT, STATE(997), 1, sym_text_interpolation, - ACTIONS(1975), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(1952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1471), 22, + ACTIONS(1966), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1808), 8, 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, - [32157] = 16, + [32187] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1478), 1, + anon_sym_QMARK, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1961), 1, + ACTIONS(1950), 1, + anon_sym_PIPE, + ACTIONS(1960), 1, + anon_sym_AMP_AMP, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, STATE(998), 1, sym_text_interpolation, - ACTIONS(1473), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 11, + ACTIONS(1473), 10, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -88037,46 +88173,49 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [32226] = 14, + [32260] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(1478), 1, + anon_sym_QMARK, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1950), 1, + anon_sym_PIPE, + ACTIONS(1962), 1, + anon_sym_CARET, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, STATE(999), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1473), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1471), 12, + ACTIONS(1473), 11, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -88088,5909 +88227,6000 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [32291] = 23, + [32331] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1977), 1, + ACTIONS(1978), 1, anon_sym_PERCENT, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, STATE(1000), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1975), 2, + ACTIONS(1976), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1791), 5, + ACTIONS(1802), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [32374] = 23, + [32414] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1984), 1, + anon_sym_STAR_STAR, + STATE(1001), 1, + sym_text_interpolation, + ACTIONS(1732), 10, anon_sym_AMP, - ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1730), 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, - ACTIONS(1951), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, anon_sym_CARET, - ACTIONS(1969), 1, - anon_sym_GT_EQ, - ACTIONS(1973), 1, - anon_sym_DOT, - ACTIONS(1977), 1, - anon_sym_PERCENT, - STATE(1001), 1, - sym_text_interpolation, - ACTIONS(1947), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1963), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1971), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1975), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1967), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1965), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1725), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [32457] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [32463] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1983), 1, + ACTIONS(1988), 1, anon_sym_EQ_GT, STATE(1002), 1, sym_text_interpolation, - ACTIONS(1638), 2, + ACTIONS(1679), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32540] = 24, + [32546] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - ACTIONS(1987), 1, - anon_sym_COMMA, STATE(1003), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1985), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1990), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32623] = 23, + [32627] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1994), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1999), 1, + aux_sym_final_modifier_token1, + ACTIONS(2002), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2005), 1, + sym_var_modifier, + STATE(1116), 1, + sym__modifier, + ACTIONS(1997), 2, + anon_sym_BSLASH, + anon_sym_DOLLAR, + STATE(1004), 2, + sym_text_interpolation, + aux_sym_property_declaration_repeat1, + ACTIONS(2008), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1113), 4, + sym_final_modifier, + sym_abstract_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(1992), 16, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_QMARK, + anon_sym_array, + anon_sym_callable, + 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, + [32686] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(1004), 1, + STATE(1005), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1989), 3, + ACTIONS(2011), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32704] = 23, + [32767] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(1005), 1, + ACTIONS(2015), 1, + anon_sym_COMMA, + STATE(1006), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1895), 3, + ACTIONS(2013), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1991), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32785] = 24, + [32850] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - ACTIONS(1987), 1, + ACTIONS(2015), 1, anon_sym_COMMA, - STATE(1006), 1, + STATE(1007), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1993), 2, + ACTIONS(2017), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32868] = 25, + [32933] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1995), 1, + ACTIONS(2019), 1, anon_sym_COMMA, - ACTIONS(1997), 1, + ACTIONS(2021), 1, anon_sym_EQ_GT, - STATE(1007), 1, + STATE(1008), 1, sym_text_interpolation, - STATE(1513), 1, + STATE(1642), 1, aux_sym_match_condition_list_repeat1, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32953] = 23, + [33018] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(1008), 1, + STATE(1009), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1999), 3, + ACTIONS(2023), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33034] = 23, + [33099] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - STATE(1009), 1, + STATE(1010), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2001), 2, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(1851), 3, + ACTIONS(2025), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33114] = 23, + [33179] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - STATE(1010), 1, + STATE(1011), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2003), 2, + ACTIONS(2027), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1967), 3, + anon_sym_EQ_GT, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33194] = 23, + [33259] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - STATE(1011), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1012), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2005), 2, + ACTIONS(2029), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33274] = 23, + [33339] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - STATE(1012), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1013), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2007), 2, + ACTIONS(2031), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33354] = 24, + [33419] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2009), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2033), 1, anon_sym_EQ_GT, - ACTIONS(2011), 1, + ACTIONS(2035), 1, anon_sym_RPAREN, - STATE(1013), 1, + STATE(1014), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33436] = 23, + [33501] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1770), 1, anon_sym_SLASH, - STATE(1014), 1, + STATE(1015), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2013), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(2037), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33516] = 23, + [33581] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - STATE(1015), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1016), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2015), 2, + ACTIONS(2039), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33596] = 24, + [33661] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1993), 1, - anon_sym_SEMI, ACTIONS(2017), 1, + anon_sym_SEMI, + ACTIONS(2041), 1, anon_sym_COMMA, - STATE(1016), 1, + STATE(1017), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33678] = 23, + [33743] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - STATE(1017), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1018), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2019), 2, + ACTIONS(2043), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33758] = 24, + [33823] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - ACTIONS(1993), 1, - anon_sym_RPAREN, - ACTIONS(2021), 1, - anon_sym_COMMA, - STATE(1018), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1019), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1967), 3, + ACTIONS(2045), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33840] = 23, + [33903] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1980), 1, aux_sym_binary_expression_token3, - STATE(1019), 1, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1020), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2023), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(2047), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33920] = 23, + [33983] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1888), 1, + anon_sym_QMARK, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1894), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1896), 1, + aux_sym_binary_expression_token2, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, + aux_sym_binary_expression_token4, + ACTIONS(1902), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(1020), 1, + STATE(1021), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2025), 2, + ACTIONS(2049), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34000] = 23, + [34063] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1980), 1, aux_sym_binary_expression_token3, - STATE(1021), 1, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1022), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2027), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(2051), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34080] = 23, + [34143] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1832), 1, + anon_sym_QMARK, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1838), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1840), 1, + aux_sym_binary_expression_token2, + ACTIONS(1842), 1, + aux_sym_binary_expression_token3, + ACTIONS(1844), 1, + aux_sym_binary_expression_token4, + ACTIONS(1846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(1022), 1, + STATE(1023), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2029), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(2053), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34160] = 24, + [34223] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1834), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(2009), 1, - anon_sym_EQ_GT, - ACTIONS(2031), 1, - anon_sym_RPAREN, - STATE(1023), 1, + ACTIONS(1850), 1, + anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_GT_EQ, + ACTIONS(1862), 1, + anon_sym_DOT, + ACTIONS(1864), 1, + anon_sym_SLASH, + STATE(1024), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(2055), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34242] = 23, + [34303] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, + anon_sym_AMP_AMP, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1749), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1980), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1982), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - STATE(1024), 1, + STATE(1025), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2033), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1741), 3, + ACTIONS(2057), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34322] = 24, + [34383] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2009), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2033), 1, anon_sym_EQ_GT, - ACTIONS(2035), 1, + ACTIONS(2059), 1, anon_sym_RPAREN, - STATE(1025), 1, + STATE(1026), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34404] = 23, + [34465] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1832), 1, + anon_sym_QMARK, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1838), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1840), 1, + aux_sym_binary_expression_token2, + ACTIONS(1842), 1, + aux_sym_binary_expression_token3, + ACTIONS(1844), 1, + aux_sym_binary_expression_token4, + ACTIONS(1846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1907), 1, + ACTIONS(2013), 1, + anon_sym_SEMI, + ACTIONS(2041), 1, + anon_sym_COMMA, + STATE(1027), 1, + sym_text_interpolation, + ACTIONS(1836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1852), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1860), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1866), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1856), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1854), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [34547] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1909), 1, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, - ACTIONS(1913), 1, + ACTIONS(1898), 1, + aux_sym_binary_expression_token3, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, - ACTIONS(1915), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(1026), 1, + ACTIONS(1904), 1, + anon_sym_AMP_AMP, + ACTIONS(1906), 1, + anon_sym_CARET, + ACTIONS(1914), 1, + anon_sym_GT_EQ, + ACTIONS(1918), 1, + anon_sym_DOT, + ACTIONS(1920), 1, + anon_sym_SLASH, + STATE(1028), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2037), 2, + ACTIONS(2061), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34484] = 23, + [34627] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1980), 1, aux_sym_binary_expression_token3, - STATE(1027), 1, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1029), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2039), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(2063), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34564] = 23, + [34707] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1948), 1, + anon_sym_QMARK, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1956), 1, + aux_sym_binary_expression_token2, + ACTIONS(1958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, + ACTIONS(1980), 1, aux_sym_binary_expression_token3, - STATE(1028), 1, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + ACTIONS(2013), 1, + anon_sym_RPAREN, + ACTIONS(2065), 1, + anon_sym_COMMA, + STATE(1030), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2041), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34644] = 23, + [34789] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1770), 1, anon_sym_SLASH, - STATE(1029), 1, + ACTIONS(2033), 1, + anon_sym_EQ_GT, + ACTIONS(2067), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2043), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1851), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34724] = 23, + [34871] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, - aux_sym_binary_expression_token3, - ACTIONS(1839), 1, - aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - STATE(1030), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1032), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2045), 2, + ACTIONS(2069), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1851), 3, + anon_sym_RPAREN, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34804] = 23, + [34951] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - STATE(1031), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + ACTIONS(2017), 1, + anon_sym_RPAREN, + ACTIONS(2065), 1, + anon_sym_COMMA, + STATE(1033), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2047), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34884] = 24, + [35033] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - ACTIONS(1985), 1, - anon_sym_RPAREN, - ACTIONS(2021), 1, - anon_sym_COMMA, - STATE(1032), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1034), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1967), 3, + ACTIONS(2071), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34966] = 23, + [35113] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - STATE(1033), 1, + STATE(1035), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2049), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(2073), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35046] = 23, + [35193] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - STATE(1034), 1, + STATE(1036), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2051), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(2075), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35126] = 24, + [35273] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - ACTIONS(1985), 1, - anon_sym_SEMI, - ACTIONS(2017), 1, - anon_sym_COMMA, - STATE(1035), 1, + STATE(1037), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1851), 3, + ACTIONS(2077), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35208] = 23, + [35353] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - STATE(1036), 1, + STATE(1038), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2053), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(2079), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35288] = 23, + [35433] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1888), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1894), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1896), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1898), 1, aux_sym_binary_expression_token3, - ACTIONS(1955), 1, + ACTIONS(1900), 1, aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1902), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1904), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1906), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1914), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1918), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1920), 1, anon_sym_SLASH, - STATE(1037), 1, + STATE(1039), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1908), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1916), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1922), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2055), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(2081), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1912), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1910), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35368] = 23, + [35513] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1941), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1943), 1, + ACTIONS(1948), 1, anon_sym_QMARK, - ACTIONS(1945), 1, + ACTIONS(1950), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1954), 1, anon_sym_QMARK_QMARK, - ACTIONS(1951), 1, + ACTIONS(1956), 1, aux_sym_binary_expression_token2, - ACTIONS(1953), 1, - aux_sym_binary_expression_token3, - ACTIONS(1955), 1, - aux_sym_binary_expression_token4, - ACTIONS(1957), 1, + ACTIONS(1958), 1, anon_sym_PIPE_PIPE, - ACTIONS(1959), 1, + ACTIONS(1960), 1, anon_sym_AMP_AMP, - ACTIONS(1961), 1, + ACTIONS(1962), 1, anon_sym_CARET, - ACTIONS(1969), 1, + ACTIONS(1970), 1, anon_sym_GT_EQ, - ACTIONS(1973), 1, + ACTIONS(1974), 1, anon_sym_DOT, - ACTIONS(1975), 1, + ACTIONS(1976), 1, anon_sym_SLASH, - STATE(1038), 1, + ACTIONS(1980), 1, + aux_sym_binary_expression_token3, + ACTIONS(1982), 1, + aux_sym_binary_expression_token4, + STATE(1040), 1, sym_text_interpolation, - ACTIONS(1947), 2, + ACTIONS(1952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1963), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1971), 2, + ACTIONS(1972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, + ACTIONS(1978), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2057), 2, + ACTIONS(2083), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1967), 3, + ACTIONS(1968), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1965), 4, + ACTIONS(1966), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35448] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2061), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2069), 1, - sym_var_modifier, - STATE(1108), 1, - sym__modifier, - ACTIONS(2064), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2066), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1039), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(2072), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1109), 3, - sym_class_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(2059), 16, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_QMARK, - anon_sym_array, - anon_sym_callable, - 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, - [35504] = 23, + [35593] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1883), 1, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1887), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, + aux_sym_binary_expression_token2, + ACTIONS(1748), 1, + aux_sym_binary_expression_token3, + ACTIONS(1750), 1, + aux_sym_binary_expression_token4, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(1889), 1, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1897), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1901), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1903), 1, + ACTIONS(1770), 1, anon_sym_SLASH, - ACTIONS(1907), 1, - anon_sym_QMARK, - ACTIONS(1909), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1911), 1, - aux_sym_binary_expression_token2, - ACTIONS(1913), 1, - aux_sym_binary_expression_token4, - ACTIONS(1915), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1917), 1, - aux_sym_binary_expression_token3, - STATE(1040), 1, + ACTIONS(2033), 1, + anon_sym_EQ_GT, + ACTIONS(2085), 1, + anon_sym_RPAREN, + STATE(1041), 1, sym_text_interpolation, - ACTIONS(1885), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1891), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1899), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1905), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2075), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1895), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1893), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35584] = 24, + [35675] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2009), 1, - anon_sym_EQ_GT, - ACTIONS(2077), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2087), 1, anon_sym_RPAREN, - STATE(1041), 1, + STATE(1042), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35666] = 23, + [35754] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2079), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2089), 1, anon_sym_RBRACE, - STATE(1042), 1, + STATE(1043), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35745] = 23, + [35833] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2081), 1, - anon_sym_RBRACE, - STATE(1043), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2091), 1, + anon_sym_COLON, + STATE(1044), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35824] = 23, + [35912] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2083), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2093), 1, anon_sym_RBRACE, - STATE(1044), 1, + STATE(1045), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35903] = 23, + [35991] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2085), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_RBRACE, - STATE(1045), 1, + STATE(1046), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35982] = 23, + [36070] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1834), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(2087), 1, - anon_sym_RBRACE, - STATE(1046), 1, + ACTIONS(1850), 1, + anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_GT_EQ, + ACTIONS(1862), 1, + anon_sym_DOT, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(2095), 1, + anon_sym_RBRACK, + STATE(1047), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36061] = 23, + [36149] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, + ACTIONS(1738), 1, + anon_sym_QMARK, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1744), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1746), 1, + aux_sym_binary_expression_token2, + ACTIONS(1748), 1, + aux_sym_binary_expression_token3, + ACTIONS(1750), 1, + aux_sym_binary_expression_token4, + ACTIONS(1752), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_AMP_AMP, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1749), 1, + ACTIONS(1770), 1, anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(2097), 1, + anon_sym_EQ_GT, + STATE(1048), 1, + sym_text_interpolation, + ACTIONS(1742), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1758), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1762), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1760), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36228] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1736), 1, + anon_sym_AMP, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2089), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2099), 1, anon_sym_RPAREN, - STATE(1047), 1, + STATE(1049), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36140] = 23, + [36307] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1770), 1, anon_sym_SLASH, - ACTIONS(2085), 1, - anon_sym_RBRACK, - STATE(1048), 1, + ACTIONS(2101), 1, + anon_sym_RBRACE, + STATE(1050), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1851), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36219] = 23, + [36386] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2091), 1, - anon_sym_COLON, - STATE(1049), 1, - sym_text_interpolation, - ACTIONS(1733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1737), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1751), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1741), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1739), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [36298] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1749), 1, + ACTIONS(1770), 1, anon_sym_SLASH, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, - aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(2093), 1, + ACTIONS(2103), 1, anon_sym_RPAREN, - STATE(1050), 1, + STATE(1051), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36377] = 23, + [36465] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2095), 1, - anon_sym_RPAREN, - STATE(1051), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2105), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1052), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36456] = 23, + [36544] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2097), 1, - anon_sym_COLON, - STATE(1052), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2107), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1053), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36535] = 23, + [36623] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2099), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1053), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2109), 1, + anon_sym_RBRACE, + STATE(1054), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36614] = 23, + [36702] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2111), 1, anon_sym_RBRACE, - STATE(1054), 1, + STATE(1055), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36693] = 23, + [36781] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2103), 1, - anon_sym_RBRACE, - STATE(1055), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2113), 1, + anon_sym_COLON, + STATE(1056), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36772] = 23, + [36860] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2105), 1, - anon_sym_EQ_GT, - STATE(1056), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2115), 1, + anon_sym_RPAREN, + STATE(1057), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36851] = 23, + [36939] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_RBRACE, - STATE(1057), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2117), 1, + anon_sym_RPAREN, + STATE(1058), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36930] = 23, + [37018] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2109), 1, - anon_sym_RBRACE, - STATE(1058), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2119), 1, + anon_sym_RPAREN, + STATE(1059), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37009] = 23, + [37097] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2111), 1, - anon_sym_RPAREN, - STATE(1059), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2121), 1, + anon_sym_RBRACE, + STATE(1060), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37088] = 23, + [37176] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2113), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2123), 1, anon_sym_RPAREN, - STATE(1060), 1, + STATE(1061), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37167] = 23, + [37255] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2115), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2125), 1, anon_sym_RBRACE, - STATE(1061), 1, + STATE(1062), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37246] = 23, + [37334] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1535), 1, + sym_name, + ACTIONS(1567), 1, + anon_sym_QMARK, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(2127), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(2129), 1, + anon_sym_DOT_DOT_DOT, + STATE(1063), 1, + sym_text_interpolation, + STATE(1252), 1, + sym_qualified_name, + STATE(1358), 1, + sym__types, + STATE(1378), 1, + sym_union_type, + STATE(1414), 1, + sym__type, + STATE(1655), 1, + sym_variable_name, + STATE(1991), 1, + sym_namespace_name, + STATE(2007), 1, + sym_namespace_name_as_prefix, + STATE(1264), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1547), 12, + anon_sym_array, + anon_sym_callable, + 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, + [37405] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1736), 1, + anon_sym_AMP, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2117), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2131), 1, anon_sym_RBRACE, - STATE(1062), 1, + STATE(1064), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37325] = 23, + [37484] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2119), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2133), 1, anon_sym_RBRACE, - STATE(1063), 1, + STATE(1065), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37404] = 23, + [37563] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2121), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2135), 1, anon_sym_RBRACE, - STATE(1064), 1, + STATE(1066), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37483] = 23, + [37642] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2123), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1065), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2137), 1, + anon_sym_EQ_GT, + STATE(1067), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37562] = 23, + [37721] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2125), 1, - anon_sym_RBRACE, - STATE(1066), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2139), 1, + anon_sym_EQ_GT, + STATE(1068), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37641] = 23, + [37800] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2127), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2141), 1, anon_sym_RBRACE, - STATE(1067), 1, + STATE(1069), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37720] = 23, + [37879] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2129), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2143), 1, anon_sym_RBRACE, - STATE(1068), 1, + STATE(1070), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37799] = 23, + [37958] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2131), 1, - anon_sym_EQ_GT, - STATE(1069), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2145), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37878] = 23, + [38037] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2133), 1, - anon_sym_RPAREN, - STATE(1070), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2147), 1, + anon_sym_COLON, + STATE(1072), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37957] = 23, + [38116] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, - anon_sym_RPAREN, - STATE(1071), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2149), 1, + anon_sym_RBRACE, + STATE(1073), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38036] = 23, + [38195] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2137), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2151), 1, anon_sym_RBRACE, - STATE(1072), 1, + STATE(1074), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38115] = 23, + [38274] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2139), 1, - anon_sym_RBRACE, - STATE(1073), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2153), 1, + anon_sym_RPAREN, + STATE(1075), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38194] = 23, + [38353] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_RPAREN, - STATE(1074), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, + anon_sym_RBRACE, + STATE(1076), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38273] = 23, + [38432] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2143), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2157), 1, anon_sym_RBRACE, - STATE(1075), 1, + STATE(1077), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38352] = 23, + [38511] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2145), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2159), 1, anon_sym_RBRACE, - STATE(1076), 1, + STATE(1078), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38431] = 23, + [38590] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_RBRACE, - STATE(1077), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2161), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1079), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38510] = 23, + [38669] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2149), 1, - anon_sym_COLON, - STATE(1078), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2163), 1, + anon_sym_RBRACE, + STATE(1080), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38589] = 23, + [38748] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1770), 1, anon_sym_SLASH, - ACTIONS(2079), 1, - anon_sym_RBRACK, - STATE(1079), 1, + ACTIONS(2165), 1, + anon_sym_RBRACE, + STATE(1081), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1851), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38668] = 23, + [38827] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2151), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2167), 1, anon_sym_RBRACE, - STATE(1080), 1, + STATE(1082), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38747] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1534), 1, - sym_name, - ACTIONS(1562), 1, - anon_sym_QMARK, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(2153), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_DOT_DOT_DOT, - STATE(1081), 1, - sym_text_interpolation, - STATE(1248), 1, - sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1340), 1, - sym__types, - STATE(1419), 1, - sym__type, - STATE(1531), 1, - sym_variable_name, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, - sym_namespace_name, - STATE(1292), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1546), 12, - anon_sym_array, - anon_sym_callable, - 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, - [38818] = 23, + [38906] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1834), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1850), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1858), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1862), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(2081), 1, + ACTIONS(2167), 1, anon_sym_RBRACK, - STATE(1082), 1, + STATE(1083), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1851), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38897] = 23, + [38985] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1834), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(2157), 1, - anon_sym_EQ_GT, - STATE(1083), 1, + ACTIONS(1850), 1, + anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_GT_EQ, + ACTIONS(1862), 1, + anon_sym_DOT, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(2151), 1, + anon_sym_RBRACK, + STATE(1084), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38976] = 23, + [39064] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2159), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1084), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2169), 1, + anon_sym_COLON, + STATE(1085), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39055] = 23, + [39143] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2161), 1, - anon_sym_RBRACE, - STATE(1085), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2171), 1, + anon_sym_RPAREN, + STATE(1086), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39134] = 23, + [39222] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1827), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1829), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1833), 1, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1837), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1839), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1841), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1843), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(1845), 1, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1853), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1857), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1859), 1, + ACTIONS(1770), 1, anon_sym_SLASH, - ACTIONS(2163), 1, - anon_sym_RBRACK, - STATE(1086), 1, + ACTIONS(2173), 1, + anon_sym_RBRACE, + STATE(1087), 1, sym_text_interpolation, - ACTIONS(1831), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1847), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1861), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1851), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1849), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39213] = 23, + [39301] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2163), 1, - anon_sym_RBRACE, - STATE(1087), 1, - sym_text_interpolation, - ACTIONS(1733), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1737), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1751), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1741), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1739), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39292] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1729), 1, - anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, + ACTIONS(1756), 1, anon_sym_CARET, - ACTIONS(1743), 1, + ACTIONS(1764), 1, anon_sym_GT_EQ, - ACTIONS(1747), 1, + ACTIONS(1768), 1, anon_sym_DOT, - ACTIONS(1749), 1, + ACTIONS(1770), 1, anon_sym_SLASH, - ACTIONS(1755), 1, - anon_sym_QMARK, - ACTIONS(1757), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, - aux_sym_binary_expression_token2, - ACTIONS(1761), 1, - aux_sym_binary_expression_token3, - ACTIONS(1763), 1, - aux_sym_binary_expression_token4, - ACTIONS(1765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, - anon_sym_AMP_AMP, - ACTIONS(2165), 1, - anon_sym_COLON, + ACTIONS(2175), 1, + anon_sym_RBRACE, STATE(1088), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39371] = 23, + [39380] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2167), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2177), 1, anon_sym_RBRACE, STATE(1089), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39450] = 23, + [39459] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, - anon_sym_RBRACE, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2179), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1090), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39529] = 23, + [39538] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2181), 1, anon_sym_RBRACE, STATE(1091), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39608] = 23, + [39617] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1832), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1834), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1840), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1842), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1844), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1846), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1848), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_RPAREN, + ACTIONS(1850), 1, + anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_GT_EQ, + ACTIONS(1862), 1, + anon_sym_DOT, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(2183), 1, + anon_sym_RBRACK, STATE(1092), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1836), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1860), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1866), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1856), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1854), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39687] = 23, + [39696] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2175), 1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2183), 1, anon_sym_RBRACE, STATE(1093), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39766] = 23, + [39775] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1736), 1, anon_sym_AMP, - ACTIONS(1731), 1, - anon_sym_PIPE, - ACTIONS(1735), 1, - anon_sym_CARET, - ACTIONS(1743), 1, - anon_sym_GT_EQ, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_SLASH, - ACTIONS(1755), 1, + ACTIONS(1738), 1, anon_sym_QMARK, - ACTIONS(1757), 1, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, anon_sym_QMARK_QMARK, - ACTIONS(1759), 1, + ACTIONS(1746), 1, aux_sym_binary_expression_token2, - ACTIONS(1761), 1, + ACTIONS(1748), 1, aux_sym_binary_expression_token3, - ACTIONS(1763), 1, + ACTIONS(1750), 1, aux_sym_binary_expression_token4, - ACTIONS(1765), 1, + ACTIONS(1752), 1, anon_sym_PIPE_PIPE, - ACTIONS(1767), 1, + ACTIONS(1754), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(1756), 1, + anon_sym_CARET, + ACTIONS(1764), 1, + anon_sym_GT_EQ, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(1770), 1, + anon_sym_SLASH, + ACTIONS(2185), 1, + anon_sym_RBRACE, STATE(1094), 1, sym_text_interpolation, - ACTIONS(1733), 2, + ACTIONS(1742), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1737), 2, + ACTIONS(1758), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 2, + ACTIONS(1766), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1751), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1741), 3, + ACTIONS(1762), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1739), 4, + ACTIONS(1760), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39845] = 24, + [39854] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2187), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2181), 1, + ACTIONS(2189), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2183), 1, + ACTIONS(2191), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2185), 1, + ACTIONS(2193), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2187), 1, + ACTIONS(2195), 1, anon_sym_RBRACE, - ACTIONS(2191), 1, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2201), 1, sym_var_modifier, - ACTIONS(2195), 1, + ACTIONS(2205), 1, anon_sym_POUND_LBRACK, - STATE(675), 1, + STATE(665), 1, aux_sym_property_declaration_repeat1, STATE(1095), 1, sym_text_interpolation, STATE(1096), 1, + sym_final_modifier, + STATE(1101), 1, aux_sym_declaration_list_repeat1, - STATE(1107), 1, + STATE(1110), 1, sym_visibility_modifier, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1124), 1, + STATE(1127), 1, sym_attribute_list, - STATE(1149), 1, - sym__member_declaration, - STATE(1150), 1, - sym__class_const_declaration, - STATE(1152), 1, + STATE(1158), 1, sym__const_declaration, - STATE(1165), 1, + STATE(1163), 1, + sym__class_const_declaration, + STATE(1164), 1, + sym__member_declaration, + STATE(1170), 1, aux_sym_attribute_list_repeat2, - STATE(1453), 1, + STATE(1400), 1, sym__function_definition_header, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1109), 2, - sym_class_modifier, + STATE(1113), 2, + sym_abstract_modifier, sym_static_modifier, - ACTIONS(2193), 3, + ACTIONS(2203), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1153), 3, + STATE(1155), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [39924] = 23, + [39938] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2197), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2200), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2203), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2206), 1, - aux_sym_namespace_use_declaration_token3, ACTIONS(2209), 1, - anon_sym_RBRACE, - ACTIONS(2214), 1, - sym_var_modifier, - ACTIONS(2220), 1, - anon_sym_POUND_LBRACK, - STATE(675), 1, - aux_sym_property_declaration_repeat1, - STATE(1107), 1, - sym_visibility_modifier, - STATE(1108), 1, - sym__modifier, - STATE(1124), 1, - sym_attribute_list, - STATE(1149), 1, - sym__member_declaration, - STATE(1150), 1, - sym__class_const_declaration, - STATE(1152), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1096), 1, + sym_text_interpolation, + STATE(1166), 1, sym__const_declaration, - STATE(1165), 1, - aux_sym_attribute_list_repeat2, - STATE(1453), 1, - sym__function_definition_header, + STATE(2055), 1, + sym_visibility_modifier, ACTIONS(2211), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1096), 2, - sym_text_interpolation, - aux_sym_declaration_list_repeat1, - STATE(1109), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(2217), 3, + anon_sym_BSLASH, + anon_sym_DOLLAR, + ACTIONS(2207), 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, - STATE(1153), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40001] = 24, + anon_sym_QMARK, + anon_sym_array, + anon_sym_callable, + 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, + [39986] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2187), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2181), 1, + ACTIONS(2189), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2183), 1, + ACTIONS(2191), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2185), 1, + ACTIONS(2193), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2191), 1, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2201), 1, sym_var_modifier, - ACTIONS(2195), 1, + ACTIONS(2205), 1, anon_sym_POUND_LBRACK, - ACTIONS(2223), 1, + ACTIONS(2213), 1, anon_sym_RBRACE, - STATE(675), 1, + STATE(665), 1, aux_sym_property_declaration_repeat1, + STATE(1096), 1, + sym_final_modifier, STATE(1097), 1, sym_text_interpolation, - STATE(1100), 1, + STATE(1105), 1, aux_sym_declaration_list_repeat1, - STATE(1107), 1, + STATE(1110), 1, sym_visibility_modifier, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1124), 1, + STATE(1127), 1, sym_attribute_list, - STATE(1149), 1, - sym__member_declaration, - STATE(1150), 1, - sym__class_const_declaration, - STATE(1152), 1, + STATE(1158), 1, sym__const_declaration, - STATE(1165), 1, + STATE(1163), 1, + sym__class_const_declaration, + STATE(1164), 1, + sym__member_declaration, + STATE(1170), 1, aux_sym_attribute_list_repeat2, - STATE(1453), 1, + STATE(1400), 1, sym__function_definition_header, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1109), 2, - sym_class_modifier, + STATE(1113), 2, + sym_abstract_modifier, sym_static_modifier, - ACTIONS(2193), 3, + ACTIONS(2203), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1153), 3, + STATE(1155), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40080] = 24, + [40070] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2187), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2181), 1, + ACTIONS(2189), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2183), 1, + ACTIONS(2191), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2185), 1, + ACTIONS(2193), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2191), 1, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2201), 1, sym_var_modifier, - ACTIONS(2195), 1, + ACTIONS(2205), 1, anon_sym_POUND_LBRACK, - ACTIONS(2225), 1, + ACTIONS(2215), 1, anon_sym_RBRACE, - STATE(675), 1, + STATE(665), 1, aux_sym_property_declaration_repeat1, STATE(1096), 1, + sym_final_modifier, + STATE(1097), 1, aux_sym_declaration_list_repeat1, STATE(1098), 1, sym_text_interpolation, - STATE(1107), 1, + STATE(1110), 1, sym_visibility_modifier, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1124), 1, + STATE(1127), 1, sym_attribute_list, - STATE(1149), 1, - sym__member_declaration, - STATE(1150), 1, - sym__class_const_declaration, - STATE(1152), 1, + STATE(1158), 1, sym__const_declaration, - STATE(1165), 1, + STATE(1163), 1, + sym__class_const_declaration, + STATE(1164), 1, + sym__member_declaration, + STATE(1170), 1, aux_sym_attribute_list_repeat2, - STATE(1453), 1, + STATE(1400), 1, sym__function_definition_header, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1109), 2, - sym_class_modifier, + STATE(1113), 2, + sym_abstract_modifier, sym_static_modifier, - ACTIONS(2193), 3, + ACTIONS(2203), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1153), 3, + STATE(1155), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40159] = 24, + [40154] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2187), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2181), 1, + ACTIONS(2189), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2183), 1, + ACTIONS(2191), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2185), 1, + ACTIONS(2193), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2191), 1, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2201), 1, sym_var_modifier, - ACTIONS(2195), 1, + ACTIONS(2205), 1, anon_sym_POUND_LBRACK, - ACTIONS(2227), 1, + ACTIONS(2217), 1, anon_sym_RBRACE, - STATE(675), 1, + STATE(665), 1, aux_sym_property_declaration_repeat1, + STATE(1096), 1, + sym_final_modifier, STATE(1099), 1, sym_text_interpolation, - STATE(1101), 1, + STATE(1105), 1, aux_sym_declaration_list_repeat1, - STATE(1107), 1, + STATE(1110), 1, sym_visibility_modifier, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1124), 1, + STATE(1127), 1, sym_attribute_list, - STATE(1149), 1, - sym__member_declaration, - STATE(1150), 1, - sym__class_const_declaration, - STATE(1152), 1, + STATE(1158), 1, sym__const_declaration, - STATE(1165), 1, + STATE(1163), 1, + sym__class_const_declaration, + STATE(1164), 1, + sym__member_declaration, + STATE(1170), 1, aux_sym_attribute_list_repeat2, - STATE(1453), 1, + STATE(1400), 1, sym__function_definition_header, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1109), 2, - sym_class_modifier, + STATE(1113), 2, + sym_abstract_modifier, sym_static_modifier, - ACTIONS(2193), 3, + ACTIONS(2203), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1153), 3, + STATE(1155), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40238] = 24, + [40238] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2187), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2181), 1, + ACTIONS(2189), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2183), 1, + ACTIONS(2191), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2185), 1, + ACTIONS(2193), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2191), 1, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2201), 1, sym_var_modifier, - ACTIONS(2195), 1, + ACTIONS(2205), 1, anon_sym_POUND_LBRACK, - ACTIONS(2229), 1, + ACTIONS(2219), 1, anon_sym_RBRACE, - STATE(675), 1, + STATE(665), 1, aux_sym_property_declaration_repeat1, STATE(1096), 1, - aux_sym_declaration_list_repeat1, + sym_final_modifier, STATE(1100), 1, sym_text_interpolation, - STATE(1107), 1, + STATE(1105), 1, + aux_sym_declaration_list_repeat1, + STATE(1110), 1, sym_visibility_modifier, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1124), 1, + STATE(1127), 1, sym_attribute_list, - STATE(1149), 1, - sym__member_declaration, - STATE(1150), 1, - sym__class_const_declaration, - STATE(1152), 1, + STATE(1158), 1, sym__const_declaration, - STATE(1165), 1, + STATE(1163), 1, + sym__class_const_declaration, + STATE(1164), 1, + sym__member_declaration, + STATE(1170), 1, aux_sym_attribute_list_repeat2, - STATE(1453), 1, + STATE(1400), 1, sym__function_definition_header, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1109), 2, - sym_class_modifier, + STATE(1113), 2, + sym_abstract_modifier, sym_static_modifier, - ACTIONS(2193), 3, + ACTIONS(2203), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1153), 3, + STATE(1155), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40317] = 24, + [40322] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2187), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2181), 1, + ACTIONS(2189), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2183), 1, + ACTIONS(2191), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2185), 1, + ACTIONS(2193), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2191), 1, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2201), 1, sym_var_modifier, - ACTIONS(2195), 1, + ACTIONS(2205), 1, anon_sym_POUND_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2221), 1, anon_sym_RBRACE, - STATE(675), 1, + STATE(665), 1, aux_sym_property_declaration_repeat1, STATE(1096), 1, - aux_sym_declaration_list_repeat1, + sym_final_modifier, STATE(1101), 1, sym_text_interpolation, - STATE(1107), 1, + STATE(1105), 1, + aux_sym_declaration_list_repeat1, + STATE(1110), 1, sym_visibility_modifier, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1124), 1, + STATE(1127), 1, sym_attribute_list, - STATE(1149), 1, - sym__member_declaration, - STATE(1150), 1, - sym__class_const_declaration, - STATE(1152), 1, + STATE(1158), 1, sym__const_declaration, - STATE(1165), 1, + STATE(1163), 1, + sym__class_const_declaration, + STATE(1164), 1, + sym__member_declaration, + STATE(1170), 1, aux_sym_attribute_list_repeat2, - STATE(1453), 1, + STATE(1400), 1, sym__function_definition_header, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1109), 2, - sym_class_modifier, + STATE(1113), 2, + sym_abstract_modifier, sym_static_modifier, - ACTIONS(2193), 3, + ACTIONS(2203), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1153), 3, + STATE(1155), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40396] = 24, + [40406] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2209), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1102), 1, + sym_text_interpolation, + STATE(1138), 1, + sym__const_declaration, + STATE(2055), 1, + sym_visibility_modifier, + ACTIONS(2211), 2, + anon_sym_BSLASH, + anon_sym_DOLLAR, + ACTIONS(2207), 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, + anon_sym_callable, + 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, + [40454] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2187), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2181), 1, + ACTIONS(2189), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2183), 1, + ACTIONS(2191), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2185), 1, + ACTIONS(2193), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2191), 1, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2201), 1, sym_var_modifier, - ACTIONS(2195), 1, + ACTIONS(2205), 1, anon_sym_POUND_LBRACK, - ACTIONS(2233), 1, + ACTIONS(2223), 1, anon_sym_RBRACE, - STATE(675), 1, + STATE(665), 1, aux_sym_property_declaration_repeat1, - STATE(1098), 1, + STATE(1096), 1, + sym_final_modifier, + STATE(1099), 1, aux_sym_declaration_list_repeat1, - STATE(1102), 1, + STATE(1103), 1, sym_text_interpolation, - STATE(1107), 1, + STATE(1110), 1, sym_visibility_modifier, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1124), 1, + STATE(1127), 1, sym_attribute_list, - STATE(1149), 1, - sym__member_declaration, - STATE(1150), 1, - sym__class_const_declaration, - STATE(1152), 1, + STATE(1158), 1, sym__const_declaration, - STATE(1165), 1, + STATE(1163), 1, + sym__class_const_declaration, + STATE(1164), 1, + sym__member_declaration, + STATE(1170), 1, aux_sym_attribute_list_repeat2, - STATE(1453), 1, + STATE(1400), 1, sym__function_definition_header, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1109), 2, - sym_class_modifier, + STATE(1113), 2, + sym_abstract_modifier, sym_static_modifier, - ACTIONS(2193), 3, + ACTIONS(2203), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1153), 3, + STATE(1155), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40475] = 24, + [40538] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2187), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2181), 1, + ACTIONS(2189), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2183), 1, + ACTIONS(2191), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2185), 1, + ACTIONS(2193), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2191), 1, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2201), 1, sym_var_modifier, - ACTIONS(2195), 1, + ACTIONS(2205), 1, anon_sym_POUND_LBRACK, - ACTIONS(2235), 1, + ACTIONS(2225), 1, anon_sym_RBRACE, - STATE(675), 1, + STATE(665), 1, aux_sym_property_declaration_repeat1, - STATE(1095), 1, + STATE(1096), 1, + sym_final_modifier, + STATE(1100), 1, aux_sym_declaration_list_repeat1, - STATE(1103), 1, + STATE(1104), 1, sym_text_interpolation, - STATE(1107), 1, + STATE(1110), 1, sym_visibility_modifier, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1124), 1, + STATE(1127), 1, sym_attribute_list, - STATE(1149), 1, - sym__member_declaration, - STATE(1150), 1, - sym__class_const_declaration, - STATE(1152), 1, + STATE(1158), 1, sym__const_declaration, - STATE(1165), 1, + STATE(1163), 1, + sym__class_const_declaration, + STATE(1164), 1, + sym__member_declaration, + STATE(1170), 1, aux_sym_attribute_list_repeat2, - STATE(1453), 1, + STATE(1400), 1, sym__function_definition_header, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1109), 2, - sym_class_modifier, + STATE(1113), 2, + sym_abstract_modifier, sym_static_modifier, - ACTIONS(2193), 3, + ACTIONS(2203), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1153), 3, + STATE(1155), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40554] = 17, + [40622] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(1534), 1, - sym_name, - ACTIONS(1544), 1, - anon_sym_QMARK, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - STATE(1104), 1, - sym_text_interpolation, - STATE(1248), 1, - sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1352), 1, + ACTIONS(2227), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2230), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2233), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2236), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2239), 1, + anon_sym_RBRACE, + ACTIONS(2241), 1, + aux_sym_final_modifier_token1, + ACTIONS(2244), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2247), 1, + sym_var_modifier, + ACTIONS(2253), 1, + anon_sym_POUND_LBRACK, + STATE(665), 1, + aux_sym_property_declaration_repeat1, + STATE(1096), 1, + sym_final_modifier, + STATE(1110), 1, + sym_visibility_modifier, + STATE(1116), 1, + sym__modifier, + STATE(1127), 1, + sym_attribute_list, + STATE(1158), 1, + sym__const_declaration, + STATE(1163), 1, + sym__class_const_declaration, + STATE(1164), 1, + sym__member_declaration, + STATE(1170), 1, + aux_sym_attribute_list_repeat2, + STATE(1400), 1, + sym__function_definition_header, + STATE(1105), 2, + sym_text_interpolation, + aux_sym_declaration_list_repeat1, + STATE(1113), 2, + sym_abstract_modifier, + sym_static_modifier, + ACTIONS(2250), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1155), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [40704] = 17, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1535), 1, + sym_name, + ACTIONS(1545), 1, + anon_sym_QMARK, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + STATE(1106), 1, + sym_text_interpolation, + STATE(1252), 1, + sym_qualified_name, + STATE(1357), 1, sym__types, - STATE(1596), 1, + STATE(1378), 1, + sym_union_type, + STATE(1636), 1, sym_variable_name, - STATE(1741), 1, + STATE(1838), 1, sym__type, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - STATE(1292), 3, + STATE(1264), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -94003,23 +94233,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [40619] = 5, + [40769] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1105), 1, + STATE(1107), 1, sym_text_interpolation, - ACTIONS(2239), 2, + ACTIONS(2258), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2237), 24, + ACTIONS(2256), 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_class_modifier_token1, - aux_sym_class_modifier_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, sym_var_modifier, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, @@ -94038,23 +94269,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [40659] = 5, + [40810] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1106), 1, + STATE(1108), 1, sym_text_interpolation, - ACTIONS(2243), 2, + ACTIONS(2262), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2241), 24, + ACTIONS(2260), 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_class_modifier_token1, - aux_sym_class_modifier_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, @@ -94073,24 +94304,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [40699] = 6, + [40850] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2247), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1107), 1, + STATE(1109), 1, sym_text_interpolation, - ACTIONS(2249), 2, + ACTIONS(2266), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2245), 23, + ACTIONS(2264), 24, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_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, @@ -94109,22 +94339,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [40741] = 5, + [40890] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1108), 1, + ACTIONS(2268), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1110), 1, sym_text_interpolation, - ACTIONS(2253), 2, + ACTIONS(2211), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2251), 23, + ACTIONS(2207), 23, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, sym_var_modifier, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, @@ -94143,26 +94375,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [40780] = 5, + [40932] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(5), 1, sym_comment, - STATE(1109), 1, + ACTIONS(282), 1, + anon_sym_POUND_LBRACK, + STATE(1111), 1, sym_text_interpolation, - ACTIONS(2249), 2, + STATE(1115), 1, + aux_sym_attribute_list_repeat2, + ACTIONS(2272), 4, anon_sym_BSLASH, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(2245), 23, - aux_sym_function_static_declaration_token1, + ACTIONS(2270), 19, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, anon_sym_QMARK, anon_sym_array, anon_sym_callable, @@ -94177,22 +94411,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [40819] = 5, + [40975] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1110), 1, + STATE(1112), 1, sym_text_interpolation, - ACTIONS(2257), 2, + ACTIONS(2276), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2255), 23, + ACTIONS(2274), 23, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, sym_var_modifier, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, @@ -94211,28 +94445,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [40858] = 7, + [41014] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(277), 1, - anon_sym_POUND_LBRACK, - STATE(1111), 1, - sym_text_interpolation, STATE(1113), 1, - aux_sym_attribute_list_repeat2, - ACTIONS(2261), 4, + sym_text_interpolation, + ACTIONS(2211), 2, anon_sym_BSLASH, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(2259), 19, + ACTIONS(2207), 23, + aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_class_declaration_token1, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_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, anon_sym_callable, @@ -94247,38 +94479,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [40901] = 15, + [41053] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - ACTIONS(1544), 1, + ACTIONS(1545), 1, anon_sym_QMARK, - STATE(1112), 1, + STATE(1114), 1, sym_text_interpolation, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1327), 1, - sym_union_type, - STATE(1352), 1, + STATE(1357), 1, sym__types, - STATE(1897), 1, + STATE(1378), 1, + sym_union_type, + STATE(1824), 1, sym__type, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - STATE(1292), 3, + STATE(1264), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -94291,27 +94523,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [40960] = 6, + [41112] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(2282), 1, anon_sym_POUND_LBRACK, - STATE(1113), 2, + STATE(1115), 2, sym_text_interpolation, aux_sym_attribute_list_repeat2, - ACTIONS(2265), 4, + ACTIONS(2280), 4, anon_sym_BSLASH, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(2263), 19, + ACTIONS(2278), 19, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, aux_sym_class_declaration_token1, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + anon_sym_QMARK, + anon_sym_array, + anon_sym_callable, + 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, + [41153] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(1116), 1, + sym_text_interpolation, + ACTIONS(2287), 2, + anon_sym_BSLASH, + anon_sym_DOLLAR, + ACTIONS(2285), 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, anon_sym_callable, @@ -94326,38 +94592,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [41001] = 15, + [41192] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2270), 1, + ACTIONS(2289), 1, sym_name, - ACTIONS(2272), 1, + ACTIONS(2291), 1, anon_sym_QMARK, - STATE(1114), 1, + STATE(1117), 1, sym_text_interpolation, STATE(1353), 1, sym__types, - STATE(1471), 1, + STATE(1409), 1, sym_qualified_name, - STATE(1518), 1, - sym_union_type, - STATE(1693), 1, + STATE(1610), 1, sym__type, - STATE(1988), 1, + STATE(1666), 1, + sym_union_type, + STATE(1991), 1, sym_namespace_name, - STATE(1989), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - STATE(1476), 3, + STATE(1410), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2274), 12, + ACTIONS(2293), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -94370,25 +94636,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [41060] = 5, + [41251] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1115), 1, + STATE(1118), 1, sym_text_interpolation, - ACTIONS(2278), 5, + ACTIONS(2297), 5, anon_sym_BSLASH, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2276), 19, + ACTIONS(2295), 19, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, aux_sym_class_declaration_token1, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, anon_sym_QMARK, anon_sym_array, anon_sym_callable, @@ -94403,25 +94669,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [41098] = 5, + [41289] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1116), 1, + STATE(1119), 1, sym_text_interpolation, - ACTIONS(2282), 5, + ACTIONS(2301), 5, anon_sym_BSLASH, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2280), 19, + ACTIONS(2299), 19, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, aux_sym_class_declaration_token1, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, anon_sym_QMARK, anon_sym_array, anon_sym_callable, @@ -94436,34 +94702,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [41136] = 13, + [41327] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - ACTIONS(1544), 1, + ACTIONS(1545), 1, anon_sym_QMARK, - STATE(1117), 1, + STATE(1120), 1, sym_text_interpolation, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1301), 1, + STATE(1308), 1, sym__types, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - STATE(1292), 3, + STATE(1264), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -94476,34 +94742,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [41189] = 13, + [41380] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - ACTIONS(1562), 1, + ACTIONS(1567), 1, anon_sym_QMARK, - STATE(1118), 1, + STATE(1121), 1, sym_text_interpolation, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1301), 1, + STATE(1308), 1, sym__types, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(1292), 3, + STATE(2007), 1, + sym_namespace_name_as_prefix, + STATE(1264), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -94516,34 +94782,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [41242] = 13, + [41433] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2270), 1, + ACTIONS(2289), 1, sym_name, - ACTIONS(2272), 1, + ACTIONS(2291), 1, anon_sym_QMARK, - STATE(1119), 1, + STATE(1122), 1, sym_text_interpolation, - STATE(1427), 1, - sym__types, - STATE(1471), 1, + STATE(1409), 1, sym_qualified_name, - STATE(1988), 1, + STATE(1471), 1, + sym__types, + STATE(1991), 1, sym_namespace_name, - STATE(1989), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - STATE(1476), 3, + STATE(1410), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2274), 12, + ACTIONS(2293), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -94556,29 +94822,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [41295] = 11, + [41486] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2270), 1, + ACTIONS(2289), 1, sym_name, - STATE(1120), 1, + STATE(1123), 1, sym_text_interpolation, - STATE(1471), 1, + STATE(1409), 1, sym_qualified_name, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(1989), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - STATE(1386), 2, + STATE(1430), 2, sym_named_type, sym_primitive_type, - ACTIONS(2274), 12, + ACTIONS(2293), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -94591,29 +94857,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [41341] = 11, + [41532] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - STATE(1121), 1, + STATE(1124), 1, sym_text_interpolation, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1950), 1, - sym_namespace_name_as_prefix, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(1266), 2, + STATE(2097), 1, + sym_namespace_name_as_prefix, + STATE(1273), 2, sym_named_type, sym_primitive_type, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -94626,29 +94892,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [41387] = 11, + [41578] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, - STATE(1122), 1, + STATE(1125), 1, sym_text_interpolation, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(2007), 1, sym_namespace_name_as_prefix, - STATE(1266), 2, + STATE(1273), 2, sym_named_type, sym_primitive_type, - ACTIONS(1546), 12, + ACTIONS(1547), 12, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -94661,17 +94927,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - [41433] = 5, + [41624] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1123), 1, + STATE(1126), 1, sym_text_interpolation, - ACTIONS(2243), 2, + ACTIONS(2266), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2241), 16, + ACTIONS(2264), 16, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token3, anon_sym_QMARK, @@ -94688,114 +94954,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, sym_name, - [41465] = 15, + [41656] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(2187), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2183), 1, + ACTIONS(2191), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2185), 1, + ACTIONS(2193), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2191), 1, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2201), 1, sym_var_modifier, - STATE(678), 1, + STATE(675), 1, aux_sym_property_declaration_repeat1, - STATE(1107), 1, + STATE(1102), 1, + sym_final_modifier, + STATE(1110), 1, sym_visibility_modifier, - STATE(1108), 1, + STATE(1116), 1, sym__modifier, - STATE(1124), 1, + STATE(1127), 1, sym_text_interpolation, - STATE(1154), 1, + STATE(1143), 1, sym__const_declaration, - STATE(1441), 1, + STATE(1469), 1, sym__function_definition_header, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1109), 2, - sym_class_modifier, + STATE(1113), 2, + sym_abstract_modifier, sym_static_modifier, - ACTIONS(2193), 3, + ACTIONS(2203), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [41515] = 12, + [41711] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2284), 1, + ACTIONS(2303), 1, sym_name, - ACTIONS(2290), 1, + ACTIONS(2309), 1, anon_sym_BSLASH, - STATE(1125), 1, + STATE(1128), 1, sym_text_interpolation, - STATE(1432), 1, + STATE(1450), 1, sym_namespace_use_clause, - STATE(1962), 1, + STATE(1961), 1, sym_namespace_name, - STATE(1989), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - ACTIONS(2288), 2, + ACTIONS(2307), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - STATE(1321), 2, + STATE(1369), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2286), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41556] = 12, + [41752] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2284), 1, + ACTIONS(2303), 1, sym_name, - ACTIONS(2294), 1, + ACTIONS(2313), 1, anon_sym_BSLASH, - STATE(1126), 1, + STATE(1129), 1, sym_text_interpolation, - STATE(1417), 1, + STATE(1422), 1, sym_namespace_use_clause, - STATE(1989), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - STATE(2001), 1, + STATE(2006), 1, sym_namespace_name, - ACTIONS(2292), 2, + ACTIONS(2311), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - STATE(1321), 2, + STATE(1369), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2286), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41597] = 5, + [41793] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1127), 1, + STATE(1130), 1, sym_text_interpolation, - ACTIONS(2296), 6, + ACTIONS(2315), 6, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, anon_sym_array, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(1704), 7, + ACTIONS(1697), 7, sym_heredoc, anon_sym_BSLASH, anon_sym_RBRACE, @@ -94803,12876 +95072,12929 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_string, anon_sym_DOLLAR, - [41624] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1128), 1, - sym_text_interpolation, - ACTIONS(2298), 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [41648] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1129), 1, - sym_text_interpolation, - ACTIONS(908), 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [41672] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1130), 1, - sym_text_interpolation, - ACTIONS(2300), 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_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [41696] = 4, + [41820] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1131), 1, sym_text_interpolation, - ACTIONS(2302), 12, + ACTIONS(1016), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41720] = 4, + [41844] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1132), 1, sym_text_interpolation, - ACTIONS(2298), 12, + ACTIONS(2317), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41744] = 4, + [41868] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1133), 1, sym_text_interpolation, - ACTIONS(2304), 12, + ACTIONS(2319), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41768] = 4, + [41892] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1134), 1, sym_text_interpolation, - ACTIONS(2306), 12, + ACTIONS(928), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41792] = 4, + [41916] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1135), 1, sym_text_interpolation, - ACTIONS(2308), 12, + ACTIONS(2321), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41816] = 4, + [41940] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1136), 1, sym_text_interpolation, - ACTIONS(2310), 12, + ACTIONS(2323), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41840] = 4, + [41964] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1137), 1, sym_text_interpolation, - ACTIONS(2312), 12, + ACTIONS(2325), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41864] = 4, + [41988] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1138), 1, sym_text_interpolation, - ACTIONS(1087), 12, + ACTIONS(2327), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41888] = 4, + [42012] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1139), 1, sym_text_interpolation, - ACTIONS(1167), 12, + ACTIONS(2329), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41912] = 4, + [42036] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1140), 1, sym_text_interpolation, - ACTIONS(2314), 12, + ACTIONS(2317), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41936] = 4, + [42060] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1141), 1, sym_text_interpolation, - ACTIONS(2316), 12, + ACTIONS(2331), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41960] = 4, + [42084] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1142), 1, sym_text_interpolation, - ACTIONS(2300), 12, + ACTIONS(2333), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [41984] = 4, + [42108] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1143), 1, sym_text_interpolation, - ACTIONS(2318), 12, + ACTIONS(2335), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42008] = 4, + [42132] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1144), 1, sym_text_interpolation, - ACTIONS(1139), 12, + ACTIONS(2331), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42032] = 4, + [42156] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1145), 1, sym_text_interpolation, - ACTIONS(2320), 12, + ACTIONS(2337), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42056] = 4, + [42180] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1146), 1, sym_text_interpolation, - ACTIONS(2320), 12, + ACTIONS(1148), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42080] = 4, + [42204] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1147), 1, sym_text_interpolation, - ACTIONS(904), 12, + ACTIONS(2339), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42104] = 4, + [42228] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1148), 1, sym_text_interpolation, - ACTIONS(2322), 12, + ACTIONS(2341), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42128] = 4, + [42252] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1149), 1, sym_text_interpolation, - ACTIONS(2324), 12, + ACTIONS(2343), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42152] = 4, + [42276] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1150), 1, sym_text_interpolation, - ACTIONS(2326), 12, + ACTIONS(2345), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42176] = 4, + [42300] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1151), 1, sym_text_interpolation, - ACTIONS(2328), 12, + ACTIONS(2347), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42200] = 4, + [42324] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1152), 1, sym_text_interpolation, - ACTIONS(2330), 12, + ACTIONS(2349), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42224] = 4, + [42348] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1153), 1, sym_text_interpolation, - ACTIONS(2332), 12, + ACTIONS(1080), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42248] = 4, + [42372] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1154), 1, sym_text_interpolation, - ACTIONS(2334), 12, + ACTIONS(905), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42272] = 4, + [42396] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1155), 1, sym_text_interpolation, - ACTIONS(2336), 12, + ACTIONS(2351), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42296] = 4, + [42420] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1156), 1, sym_text_interpolation, - ACTIONS(2338), 12, + ACTIONS(2353), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42320] = 4, + [42444] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1157), 1, sym_text_interpolation, - ACTIONS(2340), 12, + ACTIONS(2355), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42344] = 4, + [42468] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1158), 1, sym_text_interpolation, - ACTIONS(2342), 12, + ACTIONS(2357), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42368] = 4, + [42492] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1159), 1, sym_text_interpolation, - ACTIONS(2342), 12, + ACTIONS(2359), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42392] = 4, + [42516] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1160), 1, sym_text_interpolation, - ACTIONS(2344), 12, + ACTIONS(2359), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42416] = 4, + [42540] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1161), 1, sym_text_interpolation, - ACTIONS(2346), 12, + ACTIONS(2339), 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_class_modifier_token1, - aux_sym_class_modifier_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_POUND_LBRACK, - [42440] = 11, + [42564] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(5), 1, + sym_comment, + STATE(1162), 1, + sym_text_interpolation, + ACTIONS(2361), 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, + [42588] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1163), 1, + sym_text_interpolation, + ACTIONS(2363), 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, + [42612] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1164), 1, + sym_text_interpolation, + ACTIONS(2365), 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, + [42636] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1165), 1, + sym_text_interpolation, + ACTIONS(2367), 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, + [42660] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1166), 1, + sym_text_interpolation, + ACTIONS(2369), 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, + [42684] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2371), 1, + anon_sym_POUND_LBRACK, + STATE(1167), 2, + sym_text_interpolation, + aux_sym_attribute_list_repeat2, + ACTIONS(2280), 9, + aux_sym_function_static_declaration_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, + [42709] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2284), 1, + ACTIONS(2303), 1, sym_name, - STATE(1162), 1, + ACTIONS(2374), 1, + anon_sym_BSLASH, + STATE(1168), 1, sym_text_interpolation, - STATE(1687), 1, + STATE(1383), 1, sym_namespace_use_clause, - STATE(1988), 1, - sym_namespace_name, - STATE(1989), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - STATE(1321), 2, + STATE(2098), 1, + sym_namespace_name, + STATE(1369), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2286), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42477] = 11, + [42746] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2348), 1, + ACTIONS(2376), 1, sym_name, - STATE(1163), 1, + STATE(1169), 1, sym_text_interpolation, - STATE(1750), 1, + STATE(1561), 1, sym_attribute, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - STATE(1391), 2, + STATE(1396), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42514] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1524), 1, - anon_sym_COLON_COLON, - ACTIONS(1548), 1, - anon_sym_DOLLAR, - ACTIONS(2257), 1, - aux_sym_arrow_function_token1, - ACTIONS(2352), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1164), 1, - sym_text_interpolation, - STATE(1376), 1, - sym_variable_name, - STATE(1437), 1, - sym_static_variable_declaration, - ACTIONS(1417), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [42549] = 6, + [42783] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2195), 1, + ACTIONS(2205), 1, anon_sym_POUND_LBRACK, - STATE(1165), 1, - sym_text_interpolation, - STATE(1168), 1, + STATE(1167), 1, aux_sym_attribute_list_repeat2, - ACTIONS(2261), 9, + STATE(1170), 1, + sym_text_interpolation, + ACTIONS(2272), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, + 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, - [42576] = 11, + [42810] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2348), 1, + ACTIONS(2376), 1, sym_name, - STATE(1166), 1, + STATE(1171), 1, sym_text_interpolation, - STATE(1694), 1, + STATE(1704), 1, sym_attribute, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - STATE(1391), 2, + STATE(1396), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42613] = 10, + [42847] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1475), 1, anon_sym_BSLASH, - ACTIONS(2354), 1, + ACTIONS(2380), 1, aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2356), 1, + ACTIONS(2382), 1, aux_sym_use_instead_of_clause_token1, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(1167), 1, + STATE(1172), 1, sym_text_interpolation, - STATE(1789), 1, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42648] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2358), 1, - anon_sym_POUND_LBRACK, - STATE(1168), 2, - sym_text_interpolation, - aux_sym_attribute_list_repeat2, - ACTIONS(2265), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [42673] = 11, + [42882] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(534), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2284), 1, + ACTIONS(2376), 1, sym_name, - ACTIONS(2361), 1, - anon_sym_BSLASH, - STATE(1169), 1, + STATE(1173), 1, sym_text_interpolation, - STATE(1387), 1, - sym_namespace_use_clause, - STATE(1989), 1, - sym_namespace_name_as_prefix, - STATE(2089), 1, + STATE(1833), 1, + sym_attribute, + STATE(1991), 1, sym_namespace_name, - STATE(1321), 2, + STATE(2097), 1, + sym_namespace_name_as_prefix, + STATE(1396), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2286), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42710] = 11, + [42919] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(534), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2284), 1, + ACTIONS(2303), 1, sym_name, - ACTIONS(2363), 1, - anon_sym_BSLASH, - STATE(1170), 1, + STATE(1174), 1, sym_text_interpolation, - STATE(1460), 1, + STATE(1603), 1, sym_namespace_use_clause, - STATE(1989), 1, - sym_namespace_name_as_prefix, - STATE(2006), 1, + STATE(1991), 1, sym_namespace_name, - STATE(1321), 2, + STATE(1993), 1, + sym_namespace_name_as_prefix, + STATE(1369), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2286), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42747] = 11, + [42956] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2348), 1, + ACTIONS(2303), 1, sym_name, - STATE(1171), 1, + ACTIONS(2384), 1, + anon_sym_BSLASH, + STATE(1175), 1, sym_text_interpolation, - STATE(1510), 1, - sym_attribute, - STATE(1988), 1, - sym_namespace_name, - STATE(2034), 1, + STATE(1465), 1, + sym_namespace_use_clause, + STATE(1993), 1, sym_namespace_name_as_prefix, - STATE(1391), 2, + STATE(2011), 1, + sym_namespace_name, + STATE(1369), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42784] = 10, + [42993] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1529), 1, anon_sym_COLON_COLON, - ACTIONS(1548), 1, + ACTIONS(1549), 1, anon_sym_DOLLAR, - ACTIONS(2257), 1, + ACTIONS(2276), 1, aux_sym_arrow_function_token1, - ACTIONS(2352), 1, + ACTIONS(2386), 1, aux_sym_namespace_use_declaration_token2, - STATE(1172), 1, + STATE(1176), 1, sym_text_interpolation, - STATE(1376), 1, + STATE(1382), 1, sym_variable_name, - STATE(1414), 1, + STATE(1455), 1, sym_static_variable_declaration, - ACTIONS(1417), 5, + ACTIONS(1402), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42819] = 4, + [43028] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(595), 1, sym_comment, - STATE(1173), 1, - sym_text_interpolation, - ACTIONS(2282), 10, - aux_sym_function_static_declaration_token1, + ACTIONS(1529), 1, + anon_sym_COLON_COLON, + ACTIONS(1549), 1, + anon_sym_DOLLAR, + ACTIONS(2276), 1, + aux_sym_arrow_function_token1, + ACTIONS(2386), 1, aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [42841] = 9, + STATE(1177), 1, + sym_text_interpolation, + STATE(1382), 1, + sym_variable_name, + STATE(1419), 1, + sym_static_variable_declaration, + ACTIONS(1402), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [43063] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(2365), 1, + ACTIONS(2388), 1, + anon_sym_COMMA, + ACTIONS(2390), 1, anon_sym_RPAREN, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(1174), 1, + STATE(1178), 1, sym_text_interpolation, - STATE(1655), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1361), 5, + STATE(1735), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42873] = 10, + [43095] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2367), 1, + ACTIONS(2392), 1, sym_name, - STATE(1175), 1, + STATE(1179), 1, sym_text_interpolation, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - STATE(1572), 2, + STATE(1693), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42907] = 10, + [43129] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2369), 1, + ACTIONS(2394), 1, sym_name, - STATE(1176), 1, + STATE(1180), 1, sym_text_interpolation, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - STATE(1443), 2, + STATE(1294), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42941] = 10, + [43163] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1181), 1, + sym_text_interpolation, + ACTIONS(2301), 10, + aux_sym_function_static_declaration_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_POUND_LBRACK, + [43185] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1182), 1, + sym_text_interpolation, + ACTIONS(2297), 10, + aux_sym_function_static_declaration_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_POUND_LBRACK, + [43207] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(2396), 1, sym_name, - STATE(1177), 1, + STATE(1183), 1, sym_text_interpolation, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(1993), 1, sym_namespace_name_as_prefix, - STATE(1604), 2, + STATE(1488), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42975] = 10, + [43241] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2373), 1, + ACTIONS(2398), 1, sym_name, - STATE(1178), 1, + STATE(1184), 1, sym_text_interpolation, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(1989), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - STATE(1303), 2, + STATE(1399), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2286), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [43009] = 9, + [43275] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2400), 1, + sym_name, + STATE(1185), 1, + sym_text_interpolation, + STATE(1991), 1, + sym_namespace_name, + STATE(2097), 1, + sym_namespace_name_as_prefix, + STATE(1529), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [43309] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(755), 1, anon_sym_COMMA, - ACTIONS(2377), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + ACTIONS(2402), 1, anon_sym_RPAREN, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(1179), 1, + STATE(1186), 1, sym_text_interpolation, - STATE(1729), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1361), 5, + STATE(1551), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [43041] = 9, + [43341] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2388), 1, anon_sym_COMMA, - ACTIONS(2379), 1, + ACTIONS(2404), 1, anon_sym_RPAREN, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(1180), 1, + STATE(1187), 1, sym_text_interpolation, - STATE(1612), 1, + STATE(1709), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [43073] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1181), 1, - sym_text_interpolation, - ACTIONS(2278), 10, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [43095] = 10, + [43373] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2381), 1, - sym_name, - STATE(1182), 1, - sym_text_interpolation, - STATE(1988), 1, - sym_namespace_name, - STATE(1989), 1, - sym_namespace_name_as_prefix, - STATE(1483), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2286), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [43129] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(576), 1, + ACTIONS(1874), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2383), 1, + ACTIONS(2406), 1, sym_name, - ACTIONS(2387), 1, + ACTIONS(2408), 1, anon_sym_LBRACE, - STATE(1183), 1, + STATE(1188), 1, sym_text_interpolation, - ACTIONS(2385), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(534), 3, + STATE(620), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43158] = 8, + [43402] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1882), 1, anon_sym_DOLLAR, - ACTIONS(2389), 1, + ACTIONS(2410), 1, sym_name, - ACTIONS(2391), 1, + ACTIONS(2412), 1, anon_sym_LBRACE, - STATE(1184), 1, + STATE(1189), 1, sym_text_interpolation, - ACTIONS(2286), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(711), 3, + STATE(683), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43187] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - STATE(546), 1, - sym_arguments, - STATE(1185), 1, - sym_text_interpolation, - ACTIONS(2393), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [43214] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - STATE(546), 1, - sym_arguments, - STATE(1186), 1, - sym_text_interpolation, - ACTIONS(2395), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [43241] = 8, + [43431] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, + ACTIONS(1475), 1, anon_sym_BSLASH, - ACTIONS(1530), 1, + ACTIONS(1484), 1, anon_sym_LPAREN, - STATE(733), 1, + STATE(639), 1, sym_arguments, - STATE(1187), 1, + STATE(1190), 1, sym_text_interpolation, - STATE(1789), 1, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [43270] = 6, + [43460] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1468), 1, - anon_sym_BSLASH, - STATE(1188), 1, - sym_text_interpolation, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2397), 7, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, + ACTIONS(581), 1, anon_sym_DOLLAR, - [43295] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - STATE(546), 1, - sym_arguments, - STATE(1189), 1, - sym_text_interpolation, - ACTIONS(2399), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [43322] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_DOLLAR, - ACTIONS(2401), 1, + ACTIONS(2414), 1, sym_name, - ACTIONS(2403), 1, + ACTIONS(2418), 1, anon_sym_LBRACE, - STATE(609), 1, - sym__reserved_identifier, - STATE(1190), 1, + STATE(1191), 1, sym_text_interpolation, - STATE(623), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2350), 3, + ACTIONS(2416), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [43353] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2405), 1, - sym_name, - ACTIONS(2407), 1, - anon_sym_LBRACE, - STATE(1191), 1, - sym_text_interpolation, - STATE(1251), 1, - sym__reserved_identifier, - STATE(561), 2, + STATE(536), 3, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [43384] = 8, + sym__reserved_identifier, + [43489] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1874), 1, anon_sym_DOLLAR, - ACTIONS(2409), 1, + ACTIONS(2420), 1, sym_name, - ACTIONS(2411), 1, + ACTIONS(2422), 1, anon_sym_LBRACE, STATE(1192), 1, sym_text_interpolation, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(626), 3, + STATE(621), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43413] = 8, + [43518] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1879), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(2413), 1, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2424), 1, sym_name, - ACTIONS(2415), 1, + ACTIONS(2426), 1, anon_sym_LBRACE, STATE(1193), 1, sym_text_interpolation, - ACTIONS(2350), 3, + ACTIONS(2416), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(629), 3, + STATE(535), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43442] = 9, + [43547] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1882), 1, anon_sym_DOLLAR, - ACTIONS(2401), 1, + ACTIONS(2428), 1, sym_name, - ACTIONS(2403), 1, + ACTIONS(2430), 1, anon_sym_LBRACE, - STATE(609), 1, - sym__reserved_identifier, STATE(1194), 1, sym_text_interpolation, - STATE(622), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2350), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [43473] = 9, + STATE(687), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [43576] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1882), 1, anon_sym_DOLLAR, - ACTIONS(2401), 1, + ACTIONS(2432), 1, sym_name, - ACTIONS(2403), 1, + ACTIONS(2434), 1, anon_sym_LBRACE, - STATE(609), 1, + STATE(610), 1, sym__reserved_identifier, STATE(1195), 1, sym_text_interpolation, - STATE(706), 2, + STATE(704), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [43504] = 8, + [43607] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1468), 1, - anon_sym_BSLASH, - STATE(570), 1, - sym_arguments, + ACTIONS(1882), 1, + anon_sym_DOLLAR, + ACTIONS(2436), 1, + sym_name, + ACTIONS(2438), 1, + anon_sym_LBRACE, STATE(1196), 1, sym_text_interpolation, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [43533] = 8, + ACTIONS(2305), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(711), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [43636] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1882), 1, anon_sym_DOLLAR, - ACTIONS(2417), 1, + ACTIONS(2440), 1, sym_name, - ACTIONS(2419), 1, + ACTIONS(2442), 1, anon_sym_LBRACE, STATE(1197), 1, sym_text_interpolation, - ACTIONS(2286), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(679), 3, + STATE(688), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43562] = 9, + [43665] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1882), 1, anon_sym_DOLLAR, - ACTIONS(2421), 1, + ACTIONS(2444), 1, sym_name, - ACTIONS(2423), 1, + ACTIONS(2446), 1, anon_sym_LBRACE, STATE(1198), 1, sym_text_interpolation, - STATE(1234), 1, - sym__reserved_identifier, - STATE(687), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2350), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [43593] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_DOLLAR, - ACTIONS(2425), 1, - sym_name, - ACTIONS(2427), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_text_interpolation, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(624), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [43622] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_DOLLAR, - ACTIONS(2429), 1, - sym_name, - ACTIONS(2431), 1, - anon_sym_LBRACE, - STATE(1200), 1, - sym_text_interpolation, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(620), 3, + STATE(680), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43651] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_LBRACE, - ACTIONS(2433), 1, - sym_name, - STATE(681), 1, - sym__reserved_identifier, - STATE(1201), 1, - sym_text_interpolation, - STATE(561), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2286), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [43682] = 8, + [43694] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, - anon_sym_BSLASH, - ACTIONS(1479), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - STATE(646), 1, + ACTIONS(1475), 1, + anon_sym_BSLASH, + STATE(587), 1, sym_arguments, - STATE(1202), 1, + STATE(1199), 1, sym_text_interpolation, - STATE(1789), 1, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [43711] = 8, + [43723] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1475), 1, + anon_sym_BSLASH, + STATE(1200), 1, + sym_text_interpolation, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2448), 7, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [43748] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1882), 1, anon_sym_DOLLAR, - ACTIONS(2435), 1, + ACTIONS(2450), 1, sym_name, - ACTIONS(2437), 1, + ACTIONS(2452), 1, anon_sym_LBRACE, - STATE(1203), 1, + STATE(1201), 1, sym_text_interpolation, - ACTIONS(2350), 3, + ACTIONS(2305), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(619), 3, + STATE(689), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43740] = 8, + [43777] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(576), 1, + ACTIONS(286), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2439), 1, + ACTIONS(2454), 1, sym_name, - ACTIONS(2441), 1, + ACTIONS(2456), 1, anon_sym_LBRACE, - STATE(1204), 1, + STATE(1202), 1, + sym_text_interpolation, + STATE(1244), 1, + sym__reserved_identifier, + STATE(566), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [43808] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(2458), 1, + sym_name, + ACTIONS(2460), 1, + anon_sym_LBRACE, + STATE(1203), 1, sym_text_interpolation, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(532), 3, + STATE(616), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43769] = 8, + [43837] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1468), 1, - anon_sym_BSLASH, - STATE(546), 1, + STATE(541), 1, sym_arguments, - STATE(1205), 1, + STATE(1204), 1, sym_text_interpolation, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1361), 5, + ACTIONS(2462), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [43798] = 8, + [43864] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2439), 1, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(2464), 1, sym_name, - ACTIONS(2441), 1, + ACTIONS(2466), 1, anon_sym_LBRACE, - STATE(1206), 1, + STATE(1205), 1, sym_text_interpolation, - ACTIONS(2385), 3, + STATE(1247), 1, + sym__reserved_identifier, + STATE(634), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(532), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [43827] = 8, + [43895] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(1882), 1, + anon_sym_DOLLAR, + ACTIONS(2468), 1, sym_name, - ACTIONS(2447), 1, + ACTIONS(2470), 1, anon_sym_LBRACE, - STATE(1207), 1, + STATE(1206), 1, sym_text_interpolation, - ACTIONS(2445), 3, + STATE(1245), 1, + sym__reserved_identifier, + STATE(690), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(565), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [43856] = 8, + [43926] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1874), 1, anon_sym_DOLLAR, - ACTIONS(2449), 1, + ACTIONS(2472), 1, sym_name, - ACTIONS(2451), 1, + ACTIONS(2474), 1, anon_sym_LBRACE, - STATE(1208), 1, + STATE(1207), 1, sym_text_interpolation, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(621), 3, + STATE(635), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43885] = 8, + [43955] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(576), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2383), 1, + ACTIONS(2432), 1, sym_name, - ACTIONS(2387), 1, + ACTIONS(2434), 1, anon_sym_LBRACE, - STATE(1209), 1, + STATE(610), 1, + sym__reserved_identifier, + STATE(1208), 1, sym_text_interpolation, - ACTIONS(2350), 3, + STATE(537), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(534), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [43914] = 9, + [43986] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1879), 1, + ACTIONS(286), 1, anon_sym_DOLLAR, - ACTIONS(2453), 1, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2476), 1, sym_name, - ACTIONS(2455), 1, + ACTIONS(2480), 1, anon_sym_LBRACE, - STATE(1210), 1, + STATE(1209), 1, sym_text_interpolation, - STATE(1238), 1, - sym__reserved_identifier, - STATE(635), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2350), 3, + ACTIONS(2478), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [43945] = 8, + STATE(559), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [44015] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(2482), 1, sym_name, - ACTIONS(2459), 1, + ACTIONS(2484), 1, anon_sym_LBRACE, - STATE(1211), 1, + STATE(1210), 1, sym_text_interpolation, - ACTIONS(2445), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(562), 3, + STATE(611), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [43974] = 9, + [44044] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2401), 1, + ACTIONS(1882), 1, + anon_sym_DOLLAR, + ACTIONS(2432), 1, sym_name, - ACTIONS(2403), 1, + ACTIONS(2434), 1, anon_sym_LBRACE, - STATE(609), 1, + STATE(610), 1, sym__reserved_identifier, - STATE(1212), 1, + STATE(1211), 1, sym_text_interpolation, - STATE(536), 2, + STATE(691), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [44005] = 9, + [44075] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_BSLASH, + STATE(541), 1, + sym_arguments, + STATE(1212), 1, + sym_text_interpolation, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [44104] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(2401), 1, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2424), 1, sym_name, - ACTIONS(2403), 1, + ACTIONS(2426), 1, anon_sym_LBRACE, - STATE(609), 1, - sym__reserved_identifier, STATE(1213), 1, sym_text_interpolation, - STATE(685), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [44036] = 8, + STATE(535), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [44133] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1873), 1, + ACTIONS(286), 1, anon_sym_DOLLAR, - ACTIONS(2461), 1, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2486), 1, sym_name, - ACTIONS(2463), 1, + ACTIONS(2488), 1, anon_sym_LBRACE, STATE(1214), 1, sym_text_interpolation, - ACTIONS(2286), 3, + ACTIONS(2478), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(682), 3, + STATE(554), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [44065] = 8, + [44162] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1873), 1, + ACTIONS(581), 1, anon_sym_DOLLAR, - ACTIONS(2465), 1, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2414), 1, sym_name, - ACTIONS(2467), 1, + ACTIONS(2418), 1, anon_sym_LBRACE, STATE(1215), 1, sym_text_interpolation, - ACTIONS(2286), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(692), 3, + STATE(536), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [44094] = 8, + [44191] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1874), 1, anon_sym_DOLLAR, - ACTIONS(2469), 1, + ACTIONS(2490), 1, sym_name, - ACTIONS(2471), 1, + ACTIONS(2492), 1, anon_sym_LBRACE, STATE(1216), 1, sym_text_interpolation, - ACTIONS(2286), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(691), 3, + STATE(619), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [44123] = 8, + [44220] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_DOLLAR, - ACTIONS(2473), 1, - sym_name, - ACTIONS(2475), 1, - anon_sym_LBRACE, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_arguments, STATE(1217), 1, sym_text_interpolation, - ACTIONS(2286), 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, - [44152] = 11, + ACTIONS(2494), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [44247] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(286), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(2456), 1, + anon_sym_LBRACE, + ACTIONS(2496), 1, sym_name, + STATE(693), 1, + sym__reserved_identifier, STATE(1218), 1, sym_text_interpolation, - STATE(1248), 1, - sym_qualified_name, - STATE(1489), 1, - sym_named_type, - STATE(1504), 1, - sym_type_list, - STATE(1988), 1, - sym_namespace_name, - STATE(2034), 1, - sym_namespace_name_as_prefix, - [44186] = 7, + STATE(566), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2305), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [44278] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_COMMA, - ACTIONS(2379), 1, - anon_sym_RPAREN, + ACTIONS(1475), 1, + anon_sym_BSLASH, + ACTIONS(1551), 1, + anon_sym_LPAREN, + STATE(722), 1, + sym_arguments, STATE(1219), 1, sym_text_interpolation, - STATE(1612), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1361), 5, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44212] = 7, + [44307] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1524), 1, - anon_sym_COLON_COLON, - ACTIONS(2257), 1, - aux_sym_arrow_function_token1, - ACTIONS(2477), 1, - aux_sym_namespace_use_declaration_token2, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(2432), 1, + sym_name, + ACTIONS(2434), 1, + anon_sym_LBRACE, + STATE(610), 1, + sym__reserved_identifier, STATE(1220), 1, sym_text_interpolation, - ACTIONS(1417), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [44238] = 7, + STATE(617), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [44338] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_COMMA, - ACTIONS(2377), 1, - anon_sym_RPAREN, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_arguments, STATE(1221), 1, sym_text_interpolation, - STATE(1729), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1361), 5, + ACTIONS(2498), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44264] = 9, + [44365] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2479), 1, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(2432), 1, sym_name, - ACTIONS(2481), 1, - anon_sym_AMP, - ACTIONS(2483), 1, - anon_sym_LPAREN, + ACTIONS(2434), 1, + anon_sym_LBRACE, + STATE(610), 1, + sym__reserved_identifier, STATE(1222), 1, sym_text_interpolation, - STATE(1300), 1, - sym_formal_parameters, - STATE(1904), 1, - sym__reserved_identifier, - ACTIONS(2350), 3, + STATE(622), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [44294] = 11, + [44396] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACE, - ACTIONS(2487), 1, - aux_sym_base_clause_token1, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - STATE(756), 1, - sym_declaration_list, + ACTIONS(2388), 1, + anon_sym_COMMA, + ACTIONS(2404), 1, + anon_sym_RPAREN, STATE(1223), 1, sym_text_interpolation, - STATE(1270), 1, - sym_arguments, - STATE(1481), 1, - sym_base_clause, - STATE(1800), 1, - sym_class_interface_clause, - [44328] = 7, + STATE(1709), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [44422] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(2388), 1, anon_sym_COMMA, - ACTIONS(2365), 1, + ACTIONS(2390), 1, anon_sym_RPAREN, STATE(1224), 1, sym_text_interpolation, - STATE(1655), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1361), 5, + STATE(1735), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44354] = 10, + [44448] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, - anon_sym_BSLASH, - ACTIONS(2493), 1, - anon_sym_COMMA, - ACTIONS(2495), 1, - anon_sym_LBRACE, - STATE(1143), 1, - sym_use_list, - STATE(1225), 1, + ACTIONS(869), 1, + aux_sym_else_clause_token1, + ACTIONS(2500), 1, + aux_sym_catch_clause_token1, + ACTIONS(2503), 1, + aux_sym_finally_clause_token1, + ACTIONS(867), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1225), 2, sym_text_interpolation, - STATE(1295), 1, - aux_sym_base_clause_repeat1, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2491), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [44386] = 7, + aux_sym_try_statement_repeat1, + STATE(1360), 2, + sym_catch_clause, + sym_finally_clause, + [44476] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1524), 1, + ACTIONS(1529), 1, anon_sym_COLON_COLON, - ACTIONS(2257), 1, + ACTIONS(2276), 1, aux_sym_arrow_function_token1, - ACTIONS(2352), 1, + ACTIONS(2506), 1, aux_sym_namespace_use_declaration_token2, STATE(1226), 1, sym_text_interpolation, - ACTIONS(1417), 5, + ACTIONS(1402), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44412] = 11, + [44502] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(2487), 1, - aux_sym_base_clause_token1, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, + ACTIONS(1475), 1, + anon_sym_BSLASH, + ACTIONS(2510), 1, + anon_sym_COMMA, + ACTIONS(2512), 1, anon_sym_LBRACE, - STATE(954), 1, - sym_declaration_list, + STATE(1137), 1, + sym_use_list, STATE(1227), 1, sym_text_interpolation, - STATE(1253), 1, - sym_arguments, - STATE(1442), 1, - sym_base_clause, - STATE(1908), 1, - sym_class_interface_clause, - [44446] = 11, + STATE(1288), 1, + aux_sym_base_clause_repeat1, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2508), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [44534] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, + ACTIONS(200), 1, anon_sym_BSLASH, - ACTIONS(534), 1, + ACTIONS(539), 1, aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1535), 1, sym_name, STATE(1228), 1, sym_text_interpolation, - STATE(1248), 1, + STATE(1252), 1, sym_qualified_name, - STATE(1489), 1, + STATE(1404), 1, sym_named_type, - STATE(1719), 1, + STATE(1727), 1, sym_type_list, - STATE(1988), 1, + STATE(1991), 1, sym_namespace_name, - STATE(2034), 1, + STATE(2097), 1, sym_namespace_name_as_prefix, - [44480] = 9, + [44568] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(861), 1, aux_sym_else_clause_token1, - ACTIONS(2499), 1, + ACTIONS(2514), 1, aux_sym_catch_clause_token1, - ACTIONS(2501), 1, + ACTIONS(2516), 1, aux_sym_finally_clause_token1, + STATE(1225), 1, + aux_sym_try_statement_repeat1, STATE(1229), 1, sym_text_interpolation, - STATE(1230), 1, - aux_sym_try_statement_repeat1, - ACTIONS(864), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - STATE(1332), 2, - sym_catch_clause, - sym_finally_clause, - [44510] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(856), 1, - aux_sym_else_clause_token1, - ACTIONS(2503), 1, - aux_sym_catch_clause_token1, - ACTIONS(2506), 1, - aux_sym_finally_clause_token1, - ACTIONS(854), 2, + ACTIONS(859), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(1230), 2, - sym_text_interpolation, - aux_sym_try_statement_repeat1, - STATE(1332), 2, + STATE(1360), 2, sym_catch_clause, sym_finally_clause, - [44538] = 8, + [44598] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2518), 1, sym_name, - STATE(1231), 1, + ACTIONS(2520), 1, + anon_sym_AMP, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1230), 1, sym_text_interpolation, - STATE(1257), 1, + STATE(1268), 1, sym_formal_parameters, - STATE(1756), 1, + STATE(1908), 1, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [44565] = 7, + [44628] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2513), 1, - sym_integer, - STATE(1232), 1, + ACTIONS(1529), 1, + anon_sym_COLON_COLON, + ACTIONS(2276), 1, + aux_sym_arrow_function_token1, + ACTIONS(2386), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1231), 1, sym_text_interpolation, - STATE(2096), 1, - sym__string, - ACTIONS(574), 2, - sym_heredoc, - sym_string, - ACTIONS(2511), 3, - sym_float, - sym_boolean, - sym_null, - [44590] = 6, + ACTIONS(1402), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [44654] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2354), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2356), 1, - aux_sym_use_instead_of_clause_token1, - STATE(1233), 1, + ACTIONS(755), 1, + anon_sym_COMMA, + ACTIONS(2402), 1, + anon_sym_RPAREN, + STATE(1232), 1, sym_text_interpolation, - ACTIONS(1361), 5, + STATE(1551), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44613] = 6, + [44680] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1535), 1, + sym_name, + STATE(1233), 1, + sym_text_interpolation, + STATE(1252), 1, + sym_qualified_name, + STATE(1404), 1, + sym_named_type, + STATE(1681), 1, + sym_type_list, + STATE(1991), 1, + sym_namespace_name, + STATE(2097), 1, + sym_namespace_name_as_prefix, + [44714] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(716), 1, - sym_arguments, + ACTIONS(2524), 1, + anon_sym_LBRACE, + ACTIONS(2526), 1, + aux_sym_base_clause_token1, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + STATE(771), 1, + sym_declaration_list, STATE(1234), 1, sym_text_interpolation, - ACTIONS(1481), 5, + STATE(1267), 1, + sym_arguments, + STATE(1486), 1, + sym_base_clause, + STATE(1834), 1, + sym_class_interface_clause, + [44748] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1352), 1, + anon_sym_LPAREN, + ACTIONS(2526), 1, + aux_sym_base_clause_token1, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(936), 1, + sym_declaration_list, + STATE(1235), 1, + sym_text_interpolation, + STATE(1285), 1, + sym_arguments, + STATE(1446), 1, + sym_base_clause, + STATE(1776), 1, + sym_class_interface_clause, + [44782] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(1236), 1, + sym_text_interpolation, + ACTIONS(2494), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44636] = 8, + [44803] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + sym_name, + STATE(1237), 1, + sym_text_interpolation, + STATE(1301), 1, + sym_formal_parameters, + STATE(1780), 1, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [44830] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1475), 1, anon_sym_BSLASH, - ACTIONS(2517), 1, + ACTIONS(2536), 1, aux_sym_namespace_aliasing_clause_token1, - STATE(1235), 1, + STATE(1238), 1, sym_text_interpolation, - STATE(1728), 1, + STATE(1731), 1, sym_namespace_aliasing_clause, - STATE(1789), 1, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(2515), 3, + ACTIONS(2534), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [44663] = 6, + [44857] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN, - STATE(570), 1, - sym_arguments, - STATE(1236), 1, + ACTIONS(2380), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2382), 1, + aux_sym_use_instead_of_clause_token1, + STATE(1239), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44686] = 6, + [44880] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2538), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2540), 1, + aux_sym_class_declaration_token1, + STATE(1240), 1, + sym_text_interpolation, + STATE(1782), 1, + sym__function_definition_header, + STATE(2010), 2, + sym_final_modifier, + sym_abstract_modifier, + [44909] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(733), 1, + STATE(541), 1, sym_arguments, - STATE(1237), 1, + STATE(1241), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44709] = 6, + [44932] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, - anon_sym_LPAREN, - STATE(648), 1, - sym_arguments, - STATE(1238), 1, + STATE(1242), 1, sym_text_interpolation, - ACTIONS(1481), 5, + ACTIONS(2462), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44732] = 10, + [44953] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(534), 1, - aux_sym_namespace_definition_token1, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1534), 1, - sym_name, - STATE(1239), 1, - sym_text_interpolation, - STATE(1248), 1, - sym_qualified_name, - STATE(1684), 1, - sym_named_type, - STATE(1988), 1, - sym_namespace_name, - STATE(2034), 1, - sym_namespace_name_as_prefix, - [44763] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - STATE(546), 1, - sym_arguments, - STATE(1240), 1, - sym_text_interpolation, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [44786] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - STATE(1241), 1, - sym_text_interpolation, - ACTIONS(2393), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [44807] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2521), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2524), 1, - aux_sym_case_statement_token1, - ACTIONS(2519), 2, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - STATE(1242), 2, - sym_text_interpolation, - aux_sym_switch_block_repeat1, - STATE(1422), 2, - sym_case_statement, - sym_default_statement, - [44832] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1479), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - STATE(646), 1, + STATE(541), 1, sym_arguments, STATE(1243), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44855] = 6, + [44976] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - STATE(570), 1, + STATE(589), 1, sym_arguments, STATE(1244), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1490), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44878] = 6, + [44999] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(1551), 1, anon_sym_LPAREN, - STATE(646), 1, + STATE(715), 1, sym_arguments, STATE(1245), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1490), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44901] = 6, + [45022] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, - anon_sym_LPAREN, - STATE(733), 1, - sym_arguments, STATE(1246), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(2498), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44924] = 6, + [45043] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, + ACTIONS(1484), 1, anon_sym_LPAREN, - STATE(546), 1, + STATE(650), 1, sym_arguments, STATE(1247), 1, sym_text_interpolation, - ACTIONS(1361), 5, + ACTIONS(1490), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44947] = 4, + [45066] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2197), 1, + aux_sym_final_modifier_token1, + ACTIONS(2199), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2538), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2542), 1, + aux_sym_class_declaration_token1, STATE(1248), 1, sym_text_interpolation, - ACTIONS(2397), 7, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [44966] = 5, + STATE(1775), 1, + sym__function_definition_header, + STATE(2060), 2, + sym_final_modifier, + sym_abstract_modifier, + [45095] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1442), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, STATE(1249), 1, sym_text_interpolation, - ACTIONS(2399), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [44987] = 5, + [45118] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1551), 1, + anon_sym_LPAREN, + STATE(722), 1, + sym_arguments, STATE(1250), 1, sym_text_interpolation, - ACTIONS(2395), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1361), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [45008] = 6, + [45141] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1442), 1, anon_sym_LPAREN, - STATE(578), 1, + STATE(587), 1, sym_arguments, STATE(1251), 1, sym_text_interpolation, - ACTIONS(1481), 5, + ACTIONS(1358), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [45031] = 8, + [45164] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2527), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2529), 1, - aux_sym_switch_block_token1, - ACTIONS(2531), 1, - aux_sym_case_statement_token1, - STATE(1242), 1, - aux_sym_switch_block_repeat1, STATE(1252), 1, sym_text_interpolation, - STATE(1422), 2, - sym_case_statement, - sym_default_statement, - [45057] = 9, + ACTIONS(2448), 7, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [45183] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2487), 1, - aux_sym_base_clause_token1, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_declaration_list, + ACTIONS(1484), 1, + anon_sym_LPAREN, + STATE(639), 1, + sym_arguments, STATE(1253), 1, sym_text_interpolation, - STATE(1406), 1, - sym_base_clause, - STATE(1836), 1, - sym_class_interface_clause, - [45085] = 9, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [45206] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2487), 1, - aux_sym_base_clause_token1, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, - anon_sym_LBRACE, + ACTIONS(2546), 1, + sym_integer, STATE(1254), 1, sym_text_interpolation, - STATE(1307), 1, - sym_declaration_list, - STATE(1475), 1, - sym_base_clause, - STATE(1782), 1, - sym_class_interface_clause, - [45113] = 7, + STATE(2105), 1, + sym__string, + ACTIONS(579), 2, + sym_heredoc, + sym_string, + ACTIONS(2544), 3, + sym_float, + sym_boolean, + sym_null, + [45231] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(200), 1, + anon_sym_BSLASH, + ACTIONS(539), 1, + aux_sym_namespace_definition_token1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2479), 1, + ACTIONS(1535), 1, sym_name, - ACTIONS(2533), 1, - anon_sym_AMP, + STATE(1252), 1, + sym_qualified_name, STATE(1255), 1, sym_text_interpolation, - STATE(1904), 1, - sym__reserved_identifier, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [45137] = 9, + STATE(1618), 1, + sym_named_type, + STATE(1991), 1, + sym_namespace_name, + STATE(2097), 1, + sym_namespace_name_as_prefix, + [45262] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2487), 1, - aux_sym_base_clause_token1, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_declaration_list, + ACTIONS(1484), 1, + anon_sym_LPAREN, + STATE(639), 1, + sym_arguments, STATE(1256), 1, sym_text_interpolation, - STATE(1389), 1, - sym_base_clause, - STATE(1794), 1, - sym_class_interface_clause, - [45165] = 9, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [45285] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2537), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2539), 1, - anon_sym_LBRACE, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(957), 1, - sym_compound_statement, - STATE(1257), 1, + ACTIONS(2550), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2553), 1, + aux_sym_case_statement_token1, + ACTIONS(2548), 2, + anon_sym_RBRACE, + aux_sym_switch_block_token1, + STATE(1257), 2, sym_text_interpolation, - STATE(1428), 1, - sym_anonymous_function_use_clause, - STATE(1821), 1, - sym__return_type, - [45193] = 7, + aux_sym_switch_block_repeat1, + STATE(1391), 2, + sym_case_statement, + sym_default_statement, + [45310] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2543), 1, - sym_name, + ACTIONS(1551), 1, + anon_sym_LPAREN, + STATE(722), 1, + sym_arguments, STATE(1258), 1, sym_text_interpolation, - STATE(1388), 1, - sym_const_element, - STATE(1963), 1, - sym__reserved_identifier, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [45217] = 9, + ACTIONS(1358), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [45333] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2537), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2539), 1, - anon_sym_LBRACE, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(898), 1, - sym_compound_statement, + ACTIONS(1475), 1, + anon_sym_BSLASH, STATE(1259), 1, sym_text_interpolation, - STATE(1400), 1, - sym_anonymous_function_use_clause, - STATE(1809), 1, - sym__return_type, - [45245] = 9, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2556), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [45355] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2537), 1, + ACTIONS(2558), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2541), 1, + ACTIONS(2560), 1, anon_sym_COLON, - STATE(777), 1, + STATE(768), 1, sym_compound_statement, STATE(1260), 1, sym_text_interpolation, - STATE(1466), 1, + STATE(1462), 1, sym_anonymous_function_use_clause, - STATE(1798), 1, + STATE(1898), 1, sym__return_type, - [45273] = 9, + [45383] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_RBRACE, + ACTIONS(2564), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2566), 1, + aux_sym_case_statement_token1, + STATE(1261), 1, + sym_text_interpolation, + STATE(1296), 1, + aux_sym_switch_block_repeat1, + STATE(1391), 2, + sym_case_statement, + sym_default_statement, + [45409] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2526), 1, aux_sym_base_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2528), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2535), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, STATE(419), 1, sym_declaration_list, - STATE(1261), 1, + STATE(1262), 1, sym_text_interpolation, - STATE(1394), 1, + STATE(1416), 1, sym_base_clause, - STATE(1807), 1, + STATE(1839), 1, sym_class_interface_clause, - [45301] = 9, + [45437] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2545), 1, - aux_sym_if_statement_token2, - ACTIONS(2547), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2549), 1, - aux_sym_else_clause_token1, - STATE(1262), 1, - sym_text_interpolation, - STATE(1364), 1, - aux_sym_if_statement_repeat2, - STATE(1642), 1, - sym_else_if_clause_2, - STATE(2065), 1, - sym_else_clause_2, - [45329] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2543), 1, - sym_name, + ACTIONS(2564), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2566), 1, + aux_sym_case_statement_token1, + ACTIONS(2570), 1, + aux_sym_switch_block_token1, STATE(1263), 1, sym_text_interpolation, - STATE(1430), 1, - sym_const_element, - STATE(1963), 1, - sym__reserved_identifier, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [45353] = 8, + STATE(1310), 1, + aux_sym_switch_block_repeat1, + STATE(1391), 2, + sym_case_statement, + sym_default_statement, + [45463] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2527), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2531), 1, - aux_sym_case_statement_token1, - ACTIONS(2551), 1, - aux_sym_switch_block_token1, - STATE(1252), 1, - aux_sym_switch_block_repeat1, STATE(1264), 1, sym_text_interpolation, - STATE(1422), 2, - sym_case_statement, - sym_default_statement, - [45379] = 8, + ACTIONS(2572), 6, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [45481] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1468), 1, - anon_sym_BSLASH, + ACTIONS(2558), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + STATE(783), 1, + sym_compound_statement, STATE(1265), 1, sym_text_interpolation, - STATE(1749), 1, - sym_arguments, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2553), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [45405] = 4, + STATE(1493), 1, + sym_anonymous_function_use_clause, + STATE(1856), 1, + sym__return_type, + [45509] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2574), 1, + sym_name, + ACTIONS(2576), 1, + anon_sym_AMP, STATE(1266), 1, sym_text_interpolation, - ACTIONS(2555), 6, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [45423] = 9, + STATE(1770), 1, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45533] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2524), 1, + anon_sym_LBRACE, + ACTIONS(2526), 1, aux_sym_base_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2528), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, - anon_sym_LBRACE, + STATE(774), 1, + sym_declaration_list, STATE(1267), 1, sym_text_interpolation, - STATE(1336), 1, - sym_declaration_list, - STATE(1470), 1, + STATE(1485), 1, sym_base_clause, - STATE(1797), 1, + STATE(1886), 1, sym_class_interface_clause, - [45451] = 9, + [45561] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2547), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2549), 1, - aux_sym_else_clause_token1, - ACTIONS(2557), 1, - aux_sym_if_statement_token2, - STATE(1262), 1, - aux_sym_if_statement_repeat2, + ACTIONS(2558), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(2578), 1, + anon_sym_LBRACE, + STATE(894), 1, + sym_compound_statement, STATE(1268), 1, sym_text_interpolation, - STATE(1642), 1, - sym_else_if_clause_2, - STATE(2082), 1, - sym_else_clause_2, - [45479] = 9, + STATE(1424), 1, + sym_anonymous_function_use_clause, + STATE(1851), 1, + sym__return_type, + [45589] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(887), 1, aux_sym_while_statement_token1, - ACTIONS(2559), 1, + ACTIONS(2580), 1, aux_sym_else_if_clause_token1, - ACTIONS(2562), 1, + ACTIONS(2582), 1, aux_sym_else_clause_token1, STATE(1269), 1, sym_text_interpolation, - STATE(1375), 1, + STATE(1289), 1, aux_sym_if_statement_repeat1, - STATE(1493), 1, + STATE(1587), 1, sym_else_clause, - STATE(1681), 1, + STATE(1588), 1, sym_else_if_clause, - [45507] = 9, + [45617] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_LBRACE, - ACTIONS(2487), 1, - aux_sym_base_clause_token1, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - STATE(782), 1, - sym_declaration_list, STATE(1270), 1, sym_text_interpolation, - STATE(1477), 1, - sym_base_clause, - STATE(1776), 1, - sym_class_interface_clause, - [45535] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1468), 1, - anon_sym_BSLASH, - STATE(1271), 1, - sym_text_interpolation, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2565), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2584), 6, anon_sym_LBRACE, - [45557] = 9, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [45635] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2526), 1, aux_sym_base_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2528), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2535), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - STATE(429), 1, + STATE(423), 1, sym_declaration_list, - STATE(1272), 1, + STATE(1271), 1, sym_text_interpolation, - STATE(1478), 1, + STATE(1441), 1, sym_base_clause, - STATE(1846), 1, + STATE(1864), 1, sym_class_interface_clause, - [45585] = 7, + [45663] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2586), 1, sym_name, - STATE(1273), 1, + STATE(1272), 1, sym_text_interpolation, - STATE(1490), 1, + STATE(1495), 1, sym_const_element, - STATE(1963), 1, + STATE(1962), 1, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [45609] = 8, + [45687] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2527), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2531), 1, - aux_sym_case_statement_token1, - ACTIONS(2567), 1, - anon_sym_RBRACE, + STATE(1273), 1, + sym_text_interpolation, + ACTIONS(2588), 6, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [45705] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2586), 1, + sym_name, STATE(1274), 1, sym_text_interpolation, - STATE(1277), 1, - aux_sym_switch_block_repeat1, - STATE(1422), 2, - sym_case_statement, - sym_default_statement, - [45635] = 9, + STATE(1426), 1, + sym_const_element, + STATE(1962), 1, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45729] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(877), 1, + aux_sym_while_statement_token1, + ACTIONS(2590), 1, aux_sym_else_if_clause_token1, - ACTIONS(2549), 1, + ACTIONS(2593), 1, aux_sym_else_clause_token1, - ACTIONS(2569), 1, - aux_sym_if_statement_token2, STATE(1275), 1, sym_text_interpolation, - STATE(1289), 1, - aux_sym_if_statement_repeat2, - STATE(1642), 1, - sym_else_if_clause_2, - STATE(1992), 1, - sym_else_clause_2, - [45663] = 8, + STATE(1317), 1, + aux_sym_if_statement_repeat1, + STATE(1501), 1, + sym_else_clause, + STATE(1588), 1, + sym_else_if_clause, + [45757] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2571), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2573), 1, - aux_sym_class_declaration_token1, + ACTIONS(2586), 1, + sym_name, STATE(1276), 1, sym_text_interpolation, - STATE(1936), 1, - sym__function_definition_header, - STATE(2005), 1, - sym_class_modifier, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - [45689] = 8, + STATE(1428), 1, + sym_const_element, + STATE(1962), 1, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45781] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2527), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2531), 1, - aux_sym_case_statement_token1, - ACTIONS(2575), 1, - anon_sym_RBRACE, - STATE(1242), 1, - aux_sym_switch_block_repeat1, + ACTIONS(2586), 1, + sym_name, STATE(1277), 1, sym_text_interpolation, - STATE(1422), 2, - sym_case_statement, - sym_default_statement, - [45715] = 9, + STATE(1436), 1, + sym_const_element, + STATE(1962), 1, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45805] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(886), 1, + ACTIONS(887), 1, aux_sym_while_statement_token1, - ACTIONS(2577), 1, + ACTIONS(2596), 1, aux_sym_else_if_clause_token1, - ACTIONS(2580), 1, + ACTIONS(2599), 1, aux_sym_else_clause_token1, - STATE(1269), 1, + STATE(1275), 1, aux_sym_if_statement_repeat1, STATE(1278), 1, sym_text_interpolation, - STATE(1677), 1, + STATE(1587), 1, sym_else_clause, - STATE(1681), 1, + STATE(1588), 1, sym_else_if_clause, - [45743] = 9, + [45833] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2526), 1, aux_sym_base_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2528), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, + ACTIONS(2530), 1, anon_sym_LBRACE, STATE(1279), 1, sym_text_interpolation, - STATE(1362), 1, + STATE(1334), 1, sym_declaration_list, - STATE(1464), 1, + STATE(1483), 1, sym_base_clause, - STATE(1880), 1, + STATE(1893), 1, sym_class_interface_clause, - [45771] = 8, + [45861] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2527), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2531), 1, - aux_sym_case_statement_token1, - ACTIONS(2583), 1, - anon_sym_RBRACE, + ACTIONS(2586), 1, + sym_name, STATE(1280), 1, sym_text_interpolation, - STATE(1287), 1, - aux_sym_switch_block_repeat1, - STATE(1422), 2, - sym_case_statement, - sym_default_statement, - [45797] = 6, + STATE(1683), 1, + sym_const_element, + STATE(1962), 1, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45885] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, + ACTIONS(1475), 1, anon_sym_BSLASH, STATE(1281), 1, sym_text_interpolation, - STATE(1789), 1, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(2397), 4, + ACTIONS(2448), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [45819] = 9, + [45907] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2537), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(772), 1, - sym_compound_statement, + ACTIONS(2586), 1, + sym_name, STATE(1282), 1, sym_text_interpolation, - STATE(1435), 1, - sym_anonymous_function_use_clause, - STATE(1739), 1, - sym__return_type, - [45847] = 4, + STATE(1449), 1, + sym_const_element, + STATE(1962), 1, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45931] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1283), 1, - sym_text_interpolation, - ACTIONS(2585), 6, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [45865] = 9, + ACTIONS(2602), 1, + aux_sym_if_statement_token2, + ACTIONS(2604), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2606), 1, + aux_sym_else_clause_token1, + STATE(1283), 1, + sym_text_interpolation, + STATE(1291), 1, + aux_sym_if_statement_repeat2, + STATE(1739), 1, + sym_else_if_clause_2, + STATE(2088), 1, + sym_else_clause_2, + [45959] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(872), 1, - aux_sym_while_statement_token1, - ACTIONS(2587), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2589), 1, - aux_sym_else_clause_token1, + ACTIONS(2526), 1, + aux_sym_base_clause_token1, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + STATE(430), 1, + sym_declaration_list, STATE(1284), 1, sym_text_interpolation, - STATE(1375), 1, - aux_sym_if_statement_repeat1, - STATE(1493), 1, - sym_else_clause, - STATE(1681), 1, - sym_else_if_clause, - [45893] = 7, + STATE(1472), 1, + sym_base_clause, + STATE(1806), 1, + sym_class_interface_clause, + [45987] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2543), 1, - sym_name, + ACTIONS(2526), 1, + aux_sym_base_clause_token1, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(958), 1, + sym_declaration_list, STATE(1285), 1, sym_text_interpolation, - STATE(1421), 1, - sym_const_element, - STATE(1963), 1, - sym__reserved_identifier, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [45917] = 8, + STATE(1395), 1, + sym_base_clause, + STATE(1792), 1, + sym_class_interface_clause, + [46015] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2527), 1, + ACTIONS(2564), 1, aux_sym_match_default_expression_token1, - ACTIONS(2531), 1, + ACTIONS(2566), 1, aux_sym_case_statement_token1, - ACTIONS(2591), 1, + ACTIONS(2608), 1, aux_sym_switch_block_token1, - STATE(1242), 1, - aux_sym_switch_block_repeat1, STATE(1286), 1, sym_text_interpolation, - STATE(1422), 2, + STATE(1292), 1, + aux_sym_switch_block_repeat1, + STATE(1391), 2, sym_case_statement, sym_default_statement, - [45943] = 8, + [46041] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2527), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2531), 1, - aux_sym_case_statement_token1, - ACTIONS(2593), 1, - anon_sym_RBRACE, - STATE(1242), 1, - aux_sym_switch_block_repeat1, + ACTIONS(2526), 1, + aux_sym_base_clause_token1, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2530), 1, + anon_sym_LBRACE, STATE(1287), 1, sym_text_interpolation, - STATE(1422), 2, - sym_case_statement, - sym_default_statement, - [45969] = 9, + STATE(1356), 1, + sym_declaration_list, + STATE(1477), 1, + sym_base_clause, + STATE(1814), 1, + sym_class_interface_clause, + [46069] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2510), 1, + anon_sym_COMMA, + ACTIONS(2512), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_use_list, + STATE(1288), 1, + sym_text_interpolation, + STATE(1371), 1, + aux_sym_base_clause_repeat1, + ACTIONS(2610), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46095] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(877), 1, + aux_sym_while_statement_token1, + ACTIONS(2580), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2582), 1, + aux_sym_else_clause_token1, + STATE(1289), 1, + sym_text_interpolation, + STATE(1317), 1, + aux_sym_if_statement_repeat1, + STATE(1501), 1, + sym_else_clause, + STATE(1588), 1, + sym_else_if_clause, + [46123] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2537), 1, + ACTIONS(2558), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2541), 1, + ACTIONS(2560), 1, anon_sym_COLON, - STATE(765), 1, + STATE(762), 1, sym_compound_statement, - STATE(1288), 1, + STATE(1290), 1, sym_text_interpolation, - STATE(1468), 1, + STATE(1473), 1, sym_anonymous_function_use_clause, - STATE(1802), 1, + STATE(1791), 1, sym__return_type, - [45997] = 9, + [46151] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(2604), 1, aux_sym_else_if_clause_token1, - ACTIONS(2549), 1, + ACTIONS(2606), 1, aux_sym_else_clause_token1, - ACTIONS(2595), 1, + ACTIONS(2612), 1, aux_sym_if_statement_token2, - STATE(1289), 1, + STATE(1291), 1, sym_text_interpolation, - STATE(1364), 1, + STATE(1340), 1, aux_sym_if_statement_repeat2, - STATE(1642), 1, + STATE(1739), 1, sym_else_if_clause_2, - STATE(2067), 1, + STATE(2072), 1, sym_else_clause_2, - [46025] = 8, + [46179] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2564), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2566), 1, + aux_sym_case_statement_token1, + ACTIONS(2614), 1, + aux_sym_switch_block_token1, + STATE(1257), 1, + aux_sym_switch_block_repeat1, + STATE(1292), 1, + sym_text_interpolation, + STATE(1391), 2, + sym_case_statement, + sym_default_statement, + [46205] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(2597), 1, + ACTIONS(2616), 1, sym_php_tag, - ACTIONS(2601), 1, + ACTIONS(2620), 1, sym__eof, - STATE(1290), 1, + STATE(1293), 1, sym_text_interpolation, - STATE(1343), 1, + STATE(1312), 1, aux_sym_text_repeat1, - STATE(1743), 1, + STATE(1749), 1, sym_text, - ACTIONS(2599), 2, + ACTIONS(2618), 2, aux_sym_text_token1, aux_sym_text_token2, - [46051] = 9, + [46231] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(2510), 1, + anon_sym_COMMA, + ACTIONS(2512), 1, + anon_sym_LBRACE, + STATE(1137), 1, + sym_use_list, + STATE(1288), 1, + aux_sym_base_clause_repeat1, + STATE(1294), 1, + sym_text_interpolation, + ACTIONS(2508), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46257] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2526), 1, aux_sym_base_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2528), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, + ACTIONS(2530), 1, anon_sym_LBRACE, - STATE(1291), 1, + STATE(1295), 1, sym_text_interpolation, - STATE(1359), 1, + STATE(1365), 1, sym_declaration_list, - STATE(1472), 1, + STATE(1457), 1, sym_base_clause, - STATE(1786), 1, + STATE(1932), 1, sym_class_interface_clause, - [46079] = 4, + [46285] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1292), 1, + ACTIONS(2564), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2566), 1, + aux_sym_case_statement_token1, + ACTIONS(2622), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_switch_block_repeat1, + STATE(1296), 1, sym_text_interpolation, - ACTIONS(2603), 6, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [46097] = 7, + STATE(1391), 2, + sym_case_statement, + sym_default_statement, + [46311] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2605), 1, - sym_name, - ACTIONS(2607), 1, - anon_sym_AMP, - STATE(1293), 1, + ACTIONS(2604), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2606), 1, + aux_sym_else_clause_token1, + ACTIONS(2624), 1, + aux_sym_if_statement_token2, + STATE(1297), 1, sym_text_interpolation, - STATE(1853), 1, - sym__reserved_identifier, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [46121] = 8, + STATE(1300), 1, + aux_sym_if_statement_repeat2, + STATE(1739), 1, + sym_else_if_clause_2, + STATE(2073), 1, + sym_else_clause_2, + [46339] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2527), 1, + ACTIONS(2558), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(2578), 1, + anon_sym_LBRACE, + STATE(918), 1, + sym_compound_statement, + STATE(1298), 1, + sym_text_interpolation, + STATE(1435), 1, + sym_anonymous_function_use_clause, + STATE(1848), 1, + sym__return_type, + [46367] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2564), 1, aux_sym_match_default_expression_token1, - ACTIONS(2531), 1, + ACTIONS(2566), 1, aux_sym_case_statement_token1, - ACTIONS(2609), 1, - aux_sym_switch_block_token1, - STATE(1286), 1, - aux_sym_switch_block_repeat1, - STATE(1294), 1, + ACTIONS(2626), 1, + anon_sym_RBRACE, + STATE(1299), 1, sym_text_interpolation, - STATE(1422), 2, + STATE(1306), 1, + aux_sym_switch_block_repeat1, + STATE(1391), 2, sym_case_statement, sym_default_statement, - [46147] = 8, + [46393] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_COMMA, - ACTIONS(2495), 1, + ACTIONS(2604), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2606), 1, + aux_sym_else_clause_token1, + ACTIONS(2628), 1, + aux_sym_if_statement_token2, + STATE(1300), 1, + sym_text_interpolation, + STATE(1340), 1, + aux_sym_if_statement_repeat2, + STATE(1739), 1, + sym_else_if_clause_2, + STATE(2076), 1, + sym_else_clause_2, + [46421] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2558), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(2578), 1, anon_sym_LBRACE, - STATE(1161), 1, - sym_use_list, - STATE(1295), 1, + STATE(913), 1, + sym_compound_statement, + STATE(1301), 1, sym_text_interpolation, - STATE(1358), 1, - aux_sym_base_clause_repeat1, - ACTIONS(2611), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46173] = 7, + STATE(1479), 1, + sym_anonymous_function_use_clause, + STATE(1830), 1, + sym__return_type, + [46449] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2543), 1, - sym_name, - STATE(1296), 1, + ACTIONS(2526), 1, + aux_sym_base_clause_token1, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1302), 1, sym_text_interpolation, - STATE(1446), 1, - sym_const_element, - STATE(1963), 1, - sym__reserved_identifier, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [46197] = 7, + STATE(1331), 1, + sym_declaration_list, + STATE(1478), 1, + sym_base_clause, + STATE(1895), 1, + sym_class_interface_clause, + [46477] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2518), 1, sym_name, - STATE(1297), 1, + ACTIONS(2630), 1, + anon_sym_AMP, + STATE(1303), 1, sym_text_interpolation, - STATE(1439), 1, - sym_const_element, - STATE(1963), 1, + STATE(1908), 1, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [46221] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2487), 1, - aux_sym_base_clause_token1, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(423), 1, - sym_declaration_list, - STATE(1298), 1, - sym_text_interpolation, - STATE(1452), 1, - sym_base_clause, - STATE(1929), 1, - sym_class_interface_clause, - [46249] = 8, + [46501] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, + ACTIONS(1475), 1, anon_sym_BSLASH, - ACTIONS(2613), 1, + ACTIONS(2632), 1, anon_sym_COMMA, - STATE(1299), 1, + STATE(1304), 1, sym_text_interpolation, - STATE(1480), 1, + STATE(1444), 1, aux_sym_base_clause_repeat1, - STATE(1789), 1, + STATE(1793), 1, aux_sym_namespace_name_repeat1, - ACTIONS(2615), 2, + ACTIONS(2634), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [46275] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2537), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2539), 1, - anon_sym_LBRACE, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(884), 1, - sym_compound_statement, - STATE(1300), 1, - sym_text_interpolation, - STATE(1433), 1, - sym_anonymous_function_use_clause, - STATE(1898), 1, - sym__return_type, - [46303] = 4, + [46527] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1301), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_BSLASH, + STATE(1305), 1, sym_text_interpolation, - ACTIONS(2617), 6, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [46321] = 9, + STATE(1742), 1, + sym_arguments, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2636), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [46553] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(886), 1, - aux_sym_while_statement_token1, - ACTIONS(2587), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2589), 1, - aux_sym_else_clause_token1, - STATE(1284), 1, - aux_sym_if_statement_repeat1, - STATE(1302), 1, + ACTIONS(2564), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2566), 1, + aux_sym_case_statement_token1, + ACTIONS(2638), 1, + anon_sym_RBRACE, + STATE(1257), 1, + aux_sym_switch_block_repeat1, + STATE(1306), 1, sym_text_interpolation, - STATE(1677), 1, - sym_else_clause, - STATE(1681), 1, - sym_else_if_clause, - [46349] = 8, + STATE(1391), 2, + sym_case_statement, + sym_default_statement, + [46579] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_COMMA, - ACTIONS(2495), 1, + ACTIONS(2526), 1, + aux_sym_base_clause_token1, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2568), 1, anon_sym_LBRACE, - STATE(1143), 1, - sym_use_list, - STATE(1295), 1, - aux_sym_base_clause_repeat1, - STATE(1303), 1, + STATE(421), 1, + sym_declaration_list, + STATE(1307), 1, sym_text_interpolation, - ACTIONS(2491), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46375] = 8, + STATE(1418), 1, + sym_base_clause, + STATE(1847), 1, + sym_class_interface_clause, + [46607] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2571), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2619), 1, - aux_sym_class_declaration_token1, - STATE(1304), 1, + STATE(1308), 1, sym_text_interpolation, - STATE(1772), 1, - sym__function_definition_header, - STATE(2057), 1, - sym_class_modifier, - ACTIONS(2189), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - [46401] = 7, + ACTIONS(2640), 6, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [46625] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2586), 1, sym_name, - STATE(1305), 1, + STATE(1309), 1, sym_text_interpolation, - STATE(1580), 1, + STATE(1386), 1, sym_const_element, - STATE(1963), 1, + STATE(1962), 1, sym__reserved_identifier, - ACTIONS(2350), 3, + ACTIONS(2378), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [46425] = 6, + [46649] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_BSLASH, - STATE(1306), 1, - sym_text_interpolation, - STATE(1322), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2621), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [46446] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(929), 1, - aux_sym_else_clause_token1, - STATE(1307), 1, - sym_text_interpolation, - ACTIONS(927), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(2626), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46467] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(918), 1, - aux_sym_else_clause_token1, - STATE(1308), 1, + ACTIONS(2564), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2566), 1, + aux_sym_case_statement_token1, + ACTIONS(2642), 1, + aux_sym_switch_block_token1, + STATE(1257), 1, + aux_sym_switch_block_repeat1, + STATE(1310), 1, sym_text_interpolation, - ACTIONS(916), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [46486] = 8, + STATE(1391), 2, + sym_case_statement, + sym_default_statement, + [46675] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, + ACTIONS(2646), 1, anon_sym_BSLASH, - ACTIONS(2613), 1, - anon_sym_COMMA, - ACTIONS(2628), 1, - anon_sym_LBRACE, - STATE(1309), 1, + STATE(1311), 1, sym_text_interpolation, - STATE(1530), 1, - aux_sym_base_clause_repeat1, - STATE(1789), 1, + STATE(1318), 1, aux_sym_namespace_name_repeat1, - [46511] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2630), 1, - anon_sym_LBRACE, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, - ACTIONS(2634), 1, - anon_sym_DASH_GT, - ACTIONS(2636), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(2638), 1, - anon_sym_LBRACK, - STATE(1310), 1, - sym_text_interpolation, - [46536] = 6, + ACTIONS(2644), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [46696] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(2640), 1, - ts_builtin_sym_end, - ACTIONS(2642), 1, + ACTIONS(2648), 1, sym_php_tag, - ACTIONS(2644), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1311), 2, - sym_text_interpolation, - aux_sym_text_repeat1, - [46557] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2499), 1, - aux_sym_catch_clause_token1, - ACTIONS(2501), 1, - aux_sym_finally_clause_token1, - STATE(1229), 1, - aux_sym_try_statement_repeat1, + ACTIONS(2650), 1, + sym__eof, STATE(1312), 1, sym_text_interpolation, - STATE(1332), 2, - sym_catch_clause, - sym_finally_clause, - [46580] = 6, + STATE(1355), 1, + aux_sym_text_repeat1, + ACTIONS(2618), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [46719] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2647), 1, - sym_name, + ACTIONS(2654), 1, + anon_sym_BSLASH, STATE(1313), 1, sym_text_interpolation, - STATE(1686), 1, - sym_visibility_modifier, - ACTIONS(2649), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [46601] = 7, + STATE(1372), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2652), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [46740] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(199), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2653), 1, - anon_sym_BSLASH, - STATE(467), 1, - sym_compound_statement, + ACTIONS(2657), 1, + sym_name, STATE(1314), 1, sym_text_interpolation, - ACTIONS(2651), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46624] = 5, + STATE(1787), 1, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [46761] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2659), 1, anon_sym_PIPE, STATE(1315), 2, sym_text_interpolation, aux_sym_union_type_repeat1, - ACTIONS(2617), 3, + ACTIONS(2640), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [46643] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(2658), 1, - ts_builtin_sym_end, - ACTIONS(2660), 1, - sym_php_tag, - STATE(1311), 1, - aux_sym_text_repeat1, - STATE(1316), 1, - sym_text_interpolation, - ACTIONS(13), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [46666] = 7, + [46780] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_DOLLAR, ACTIONS(2662), 1, sym_name, ACTIONS(2664), 1, - anon_sym_LBRACE, - STATE(1317), 1, + anon_sym_BSLASH, + STATE(1316), 1, sym_text_interpolation, - STATE(651), 2, - sym_dynamic_variable_name, - sym_variable_name, - [46689] = 6, + STATE(1335), 1, + sym_namespace_name, + STATE(1730), 1, + sym_compound_statement, + [46805] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(917), 1, + aux_sym_while_statement_token1, + ACTIONS(919), 1, + aux_sym_else_clause_token1, ACTIONS(2666), 1, - anon_sym_BSLASH, - STATE(1318), 1, + aux_sym_else_if_clause_token1, + STATE(1588), 1, + sym_else_if_clause, + STATE(1317), 2, sym_text_interpolation, - STATE(1319), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2621), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [46710] = 6, + aux_sym_if_statement_repeat1, + [46828] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2666), 1, + ACTIONS(2646), 1, anon_sym_BSLASH, - STATE(1319), 1, + STATE(1318), 1, sym_text_interpolation, - STATE(1373), 1, + STATE(1375), 1, aux_sym_namespace_name_repeat1, - ACTIONS(2668), 3, + ACTIONS(2652), 3, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [46731] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, - ACTIONS(2670), 1, - anon_sym_LBRACE, - ACTIONS(2672), 1, - anon_sym_DASH_GT, - ACTIONS(2674), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(2676), 1, - anon_sym_LBRACK, - STATE(1320), 1, - sym_text_interpolation, - [46756] = 6, + [46849] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2517), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1321), 1, + ACTIONS(2671), 1, + anon_sym_EQ, + STATE(1319), 1, sym_text_interpolation, - STATE(1728), 1, - sym_namespace_aliasing_clause, - ACTIONS(2515), 3, + STATE(1526), 1, + sym_property_initializer, + ACTIONS(2669), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [46777] = 6, + [46870] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(581), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - ACTIONS(2678), 1, - anon_sym_BSLASH, - STATE(1322), 1, - sym_text_interpolation, - STATE(1344), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2668), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2673), 1, + sym_name, + ACTIONS(2675), 1, anon_sym_LBRACE, - [46798] = 6, + STATE(1320), 1, + sym_text_interpolation, + STATE(540), 2, + sym_dynamic_variable_name, + sym_variable_name, + [46893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2683), 1, + ACTIONS(2677), 1, anon_sym_PIPE, - STATE(1315), 1, - aux_sym_union_type_repeat1, - STATE(1323), 1, + STATE(1321), 2, sym_text_interpolation, - ACTIONS(2681), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, + aux_sym_union_type_repeat1, + ACTIONS(2640), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_DOLLAR, - [46819] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [46912] = 8, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(2640), 1, - sym__eof, - ACTIONS(2642), 1, - sym_php_tag, - ACTIONS(2685), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1324), 2, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2680), 1, + anon_sym_LBRACE, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, + ACTIONS(2684), 1, + anon_sym_DASH_GT, + ACTIONS(2686), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(2688), 1, + anon_sym_LBRACK, + STATE(1322), 1, sym_text_interpolation, - aux_sym_text_repeat1, - [46840] = 6, + [46937] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, - anon_sym_BSLASH, - STATE(1325), 1, + STATE(1323), 1, sym_text_interpolation, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2565), 3, - anon_sym_COMMA, + ACTIONS(1358), 5, anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [46861] = 8, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [46954] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(2682), 1, anon_sym_COLON_COLON, - ACTIONS(2670), 1, + ACTIONS(2690), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(2688), 1, + ACTIONS(2692), 1, anon_sym_DASH_GT, - ACTIONS(2690), 1, + ACTIONS(2694), 1, anon_sym_QMARK_DASH_GT, - STATE(1326), 1, + ACTIONS(2696), 1, + anon_sym_LBRACK, + STATE(1324), 1, sym_text_interpolation, - [46886] = 4, + [46979] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1327), 1, + ACTIONS(915), 1, + aux_sym_else_clause_token1, + STATE(1325), 1, sym_text_interpolation, - ACTIONS(2692), 5, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [46903] = 6, + ACTIONS(913), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [46998] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(981), 1, + ACTIONS(992), 1, aux_sym_else_clause_token1, - STATE(1328), 1, + STATE(1326), 1, sym_text_interpolation, - ACTIONS(979), 2, + ACTIONS(990), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2694), 2, + ACTIONS(2698), 2, sym__automatic_semicolon, anon_sym_SEMI, - [46924] = 8, + [47019] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, - ACTIONS(2696), 1, - anon_sym_LBRACE, - ACTIONS(2698), 1, - anon_sym_DASH_GT, ACTIONS(2700), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(2702), 1, - anon_sym_LBRACK, - STATE(1329), 1, + anon_sym_PIPE, + STATE(1327), 2, sym_text_interpolation, - [46949] = 7, + aux_sym_union_type_repeat1, + ACTIONS(2640), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [47038] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(2532), 1, + sym_name, + STATE(1328), 1, + sym_text_interpolation, + STATE(1780), 1, + sym__reserved_identifier, + ACTIONS(2378), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47059] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(286), 1, anon_sym_DOLLAR, - ACTIONS(2704), 1, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2703), 1, sym_name, - ACTIONS(2706), 1, + ACTIONS(2705), 1, anon_sym_LBRACE, - STATE(1330), 1, + STATE(1329), 1, sym_text_interpolation, - STATE(731), 2, + STATE(580), 2, sym_dynamic_variable_name, sym_variable_name, - [46972] = 5, + [47082] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2708), 1, - anon_sym_PIPE, - STATE(1331), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(2617), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, + ACTIONS(2707), 1, anon_sym_LBRACE, - [46991] = 5, + ACTIONS(2709), 1, + anon_sym_DASH_GT, + ACTIONS(2711), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(2713), 1, + anon_sym_LBRACK, + STATE(1330), 1, + sym_text_interpolation, + [47107] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(898), 1, + ACTIONS(958), 1, aux_sym_else_clause_token1, - STATE(1332), 1, + STATE(1331), 1, sym_text_interpolation, - ACTIONS(896), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, + ACTIONS(956), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [47010] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, - ACTIONS(2696), 1, - anon_sym_LBRACE, - ACTIONS(2702), 1, - anon_sym_LBRACK, - ACTIONS(2711), 1, - anon_sym_DASH_GT, - ACTIONS(2713), 1, - anon_sym_QMARK_DASH_GT, - STATE(1333), 1, - sym_text_interpolation, - [47035] = 5, + ACTIONS(2715), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47128] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(902), 1, + ACTIONS(940), 1, aux_sym_else_clause_token1, - STATE(1334), 1, + STATE(1332), 1, sym_text_interpolation, - ACTIONS(900), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, + ACTIONS(938), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [47054] = 8, + ACTIONS(2717), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47149] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(2682), 1, anon_sym_COLON_COLON, - ACTIONS(2715), 1, + ACTIONS(2719), 1, anon_sym_LBRACE, - ACTIONS(2717), 1, + ACTIONS(2721), 1, anon_sym_DASH_GT, - ACTIONS(2719), 1, + ACTIONS(2723), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(2721), 1, + ACTIONS(2725), 1, anon_sym_LBRACK, - STATE(1335), 1, + STATE(1333), 1, sym_text_interpolation, - [47079] = 6, + [47174] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(946), 1, aux_sym_else_clause_token1, - STATE(1336), 1, + STATE(1334), 1, sym_text_interpolation, - ACTIONS(939), 2, + ACTIONS(944), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2723), 2, + ACTIONS(2727), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47100] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, - ACTIONS(2696), 1, - anon_sym_LBRACE, - ACTIONS(2702), 1, - anon_sym_LBRACK, - ACTIONS(2725), 1, - anon_sym_DASH_GT, - ACTIONS(2727), 1, - anon_sym_QMARK_DASH_GT, - STATE(1337), 1, - sym_text_interpolation, - [47125] = 7, + [47195] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(2731), 1, anon_sym_BSLASH, - STATE(1338), 1, + STATE(1335), 1, sym_text_interpolation, - STATE(1575), 1, + STATE(1674), 1, sym_compound_statement, ACTIONS(2729), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47148] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(957), 1, - aux_sym_else_clause_token1, - STATE(1339), 1, - sym_text_interpolation, - ACTIONS(955), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(2731), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47169] = 6, + [47218] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2683), 1, + ACTIONS(2735), 1, anon_sym_PIPE, - STATE(1323), 1, + STATE(1321), 1, aux_sym_union_type_repeat1, - STATE(1340), 1, + STATE(1336), 1, sym_text_interpolation, ACTIONS(2733), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_DOLLAR, - [47190] = 6, + [47239] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(1002), 1, aux_sym_else_clause_token1, - STATE(1341), 1, + STATE(1337), 1, sym_text_interpolation, - ACTIONS(933), 2, + ACTIONS(1000), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2735), 2, + ACTIONS(2737), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47211] = 8, + [47260] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, - ACTIONS(2670), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DASH_GT, - ACTIONS(2739), 1, - anon_sym_QMARK_DASH_GT, - STATE(1342), 1, - sym_text_interpolation, - [47236] = 7, - ACTIONS(5), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(2658), 1, - sym__eof, - ACTIONS(2660), 1, - sym_php_tag, - STATE(1324), 1, - aux_sym_text_repeat1, - STATE(1343), 1, + ACTIONS(911), 1, + aux_sym_else_clause_token1, + STATE(1338), 1, sym_text_interpolation, - ACTIONS(2599), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [47259] = 5, + ACTIONS(909), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [47279] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2743), 1, - anon_sym_BSLASH, - STATE(1344), 2, + ACTIONS(2739), 1, + sym_name, + STATE(1339), 1, sym_text_interpolation, - aux_sym_namespace_name_repeat1, + STATE(1698), 1, + sym_visibility_modifier, ACTIONS(2741), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [47278] = 6, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [47300] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(969), 1, + ACTIONS(2743), 1, + aux_sym_if_statement_token2, + ACTIONS(2745), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2748), 1, aux_sym_else_clause_token1, - STATE(1345), 1, + STATE(1739), 1, + sym_else_if_clause_2, + STATE(1340), 2, sym_text_interpolation, - ACTIONS(967), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(2746), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47299] = 7, + aux_sym_if_statement_repeat2, + [47323] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2748), 1, - sym_name, - STATE(1346), 1, + ACTIONS(2514), 1, + aux_sym_catch_clause_token1, + ACTIONS(2516), 1, + aux_sym_finally_clause_token1, + STATE(1229), 1, + aux_sym_try_statement_repeat1, + STATE(1341), 1, sym_text_interpolation, - STATE(1412), 1, - sym_namespace_name, - STATE(1834), 1, - sym_namespace_use_group_clause, - ACTIONS(2750), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [47322] = 7, + STATE(1360), 2, + sym_catch_clause, + sym_finally_clause, + [47346] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(1882), 1, + anon_sym_DOLLAR, + ACTIONS(2750), 1, sym_name, - ACTIONS(2754), 1, + ACTIONS(2752), 1, anon_sym_LBRACE, - STATE(1347), 1, + STATE(1342), 1, sym_text_interpolation, - STATE(549), 2, + STATE(723), 2, sym_dynamic_variable_name, sym_variable_name, - [47345] = 6, + [47369] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(975), 1, - aux_sym_else_clause_token1, - STATE(1348), 1, + ACTIONS(2754), 1, + aux_sym_catch_clause_token1, + ACTIONS(2756), 1, + aux_sym_finally_clause_token1, + STATE(404), 1, + aux_sym_try_statement_repeat1, + STATE(1343), 1, sym_text_interpolation, - ACTIONS(973), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(2756), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47366] = 8, + STATE(410), 2, + sym_catch_clause, + sym_finally_clause, + [47392] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, - ACTIONS(2715), 1, + ACTIONS(2680), 1, anon_sym_LBRACE, - ACTIONS(2721), 1, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, + ACTIONS(2688), 1, anon_sym_LBRACK, ACTIONS(2758), 1, anon_sym_DASH_GT, ACTIONS(2760), 1, anon_sym_QMARK_DASH_GT, - STATE(1349), 1, + STATE(1344), 1, sym_text_interpolation, - [47391] = 7, + [47417] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, ACTIONS(2762), 1, sym_name, - ACTIONS(2764), 1, + STATE(1345), 1, + sym_text_interpolation, + STATE(1451), 1, + sym_namespace_name, + STATE(1563), 1, + sym_namespace_use_group_clause, + ACTIONS(2764), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [47440] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(1475), 1, + anon_sym_BSLASH, + ACTIONS(2632), 1, + anon_sym_COMMA, + ACTIONS(2766), 1, anon_sym_LBRACE, - STATE(1350), 1, + STATE(1346), 1, sym_text_interpolation, - STATE(574), 2, - sym_dynamic_variable_name, - sym_variable_name, - [47414] = 5, + STATE(1692), 1, + aux_sym_base_clause_repeat1, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + [47465] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(914), 1, + ACTIONS(934), 1, aux_sym_else_clause_token1, - STATE(1351), 1, + STATE(1347), 1, sym_text_interpolation, - ACTIONS(912), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, + ACTIONS(932), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [47433] = 6, + ACTIONS(2768), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47486] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_PIPE, - STATE(1352), 1, - sym_text_interpolation, - STATE(1366), 1, - aux_sym_union_type_repeat1, - ACTIONS(2733), 3, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, + ACTIONS(2707), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [47454] = 6, + ACTIONS(2713), 1, + anon_sym_LBRACK, + ACTIONS(2770), 1, + anon_sym_DASH_GT, + ACTIONS(2772), 1, + anon_sym_QMARK_DASH_GT, + STATE(1348), 1, + sym_text_interpolation, + [47511] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(2774), 1, anon_sym_PIPE, - STATE(1353), 1, - sym_text_interpolation, - STATE(1369), 1, + STATE(1327), 1, aux_sym_union_type_repeat1, + STATE(1349), 1, + sym_text_interpolation, ACTIONS(2733), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [47475] = 4, + [47532] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1354), 1, + ACTIONS(926), 1, + aux_sym_else_clause_token1, + STATE(1350), 1, sym_text_interpolation, - ACTIONS(1361), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [47492] = 6, + ACTIONS(924), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [47551] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2772), 1, - anon_sym_EQ, - STATE(1355), 1, + ACTIONS(2778), 1, + anon_sym_COLON, + STATE(1351), 1, sym_text_interpolation, - STATE(1570), 1, - sym_property_initializer, - ACTIONS(2770), 3, + STATE(1569), 1, + sym__return_type, + ACTIONS(2776), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [47513] = 8, + anon_sym_LBRACE, + [47572] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, + ACTIONS(202), 1, anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2774), 1, + ACTIONS(2662), 1, sym_name, - ACTIONS(2776), 1, + ACTIONS(2664), 1, anon_sym_BSLASH, - STATE(1338), 1, - sym_namespace_name, - STATE(1356), 1, - sym_text_interpolation, - STATE(1630), 1, + STATE(446), 1, sym_compound_statement, - [47538] = 7, + STATE(1352), 1, + sym_text_interpolation, + STATE(1377), 1, + sym_namespace_name, + [47597] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2748), 1, - sym_name, - STATE(1357), 1, + ACTIONS(2774), 1, + anon_sym_PIPE, + STATE(1349), 1, + aux_sym_union_type_repeat1, + STATE(1353), 1, sym_text_interpolation, - STATE(1412), 1, - sym_namespace_name, - STATE(1667), 1, - sym_namespace_use_group_clause, - ACTIONS(2750), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [47561] = 5, + ACTIONS(2780), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [47618] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, ACTIONS(2778), 1, - anon_sym_COMMA, - STATE(1358), 2, + anon_sym_COLON, + STATE(1354), 1, sym_text_interpolation, - aux_sym_base_clause_repeat1, - ACTIONS(2565), 3, + STATE(1613), 1, + sym__return_type, + ACTIONS(2782), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [47580] = 6, + [47639] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2784), 1, + sym_php_tag, + ACTIONS(2789), 1, + sym__eof, + ACTIONS(2786), 2, + aux_sym_text_token1, + aux_sym_text_token2, + STATE(1355), 2, + sym_text_interpolation, + aux_sym_text_repeat1, + [47660] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(963), 1, + ACTIONS(968), 1, aux_sym_else_clause_token1, - STATE(1359), 1, + STATE(1356), 1, sym_text_interpolation, - ACTIONS(961), 2, + ACTIONS(966), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2781), 2, + ACTIONS(2791), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47601] = 6, + [47681] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2783), 1, - sym_name, - STATE(1360), 1, + ACTIONS(2735), 1, + anon_sym_PIPE, + STATE(1336), 1, + aux_sym_union_type_repeat1, + STATE(1357), 1, sym_text_interpolation, - STATE(1924), 1, - sym__reserved_identifier, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [47622] = 6, + ACTIONS(2780), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [47702] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2793), 1, + anon_sym_PIPE, + STATE(1358), 1, + sym_text_interpolation, + STATE(1376), 1, + aux_sym_union_type_repeat1, + ACTIONS(2780), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [47723] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(947), 1, + ACTIONS(952), 1, aux_sym_else_clause_token1, - STATE(1361), 1, + STATE(1359), 1, sym_text_interpolation, - ACTIONS(945), 2, + ACTIONS(950), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2785), 2, + ACTIONS(2795), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47643] = 6, + [47744] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(997), 1, + ACTIONS(903), 1, aux_sym_else_clause_token1, - STATE(1362), 1, + STATE(1360), 1, sym_text_interpolation, - ACTIONS(995), 2, + ACTIONS(901), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2787), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47664] = 6, + [47763] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, + ACTIONS(2707), 1, + anon_sym_LBRACE, + ACTIONS(2713), 1, + anon_sym_LBRACK, + ACTIONS(2797), 1, + anon_sym_DASH_GT, + ACTIONS(2799), 1, + anon_sym_QMARK_DASH_GT, + STATE(1361), 1, + sym_text_interpolation, + [47788] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1003), 1, + ACTIONS(974), 1, aux_sym_else_clause_token1, - STATE(1363), 1, + STATE(1362), 1, sym_text_interpolation, - ACTIONS(1001), 2, + ACTIONS(972), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2789), 2, + ACTIONS(2801), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47685] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, + [47809] = 7, + ACTIONS(5), 1, sym_comment, - ACTIONS(2791), 1, - aux_sym_if_statement_token2, - ACTIONS(2793), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2796), 1, - aux_sym_else_clause_token1, - STATE(1642), 1, - sym_else_if_clause_2, - STATE(1364), 2, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2648), 1, + sym_php_tag, + ACTIONS(2650), 1, + ts_builtin_sym_end, + STATE(1363), 1, sym_text_interpolation, - aux_sym_if_statement_repeat2, - [47708] = 7, + STATE(1380), 1, + aux_sym_text_repeat1, + ACTIONS(13), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [47832] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2798), 1, - aux_sym_catch_clause_token1, - ACTIONS(2800), 1, - aux_sym_finally_clause_token1, - STATE(405), 1, - aux_sym_try_statement_repeat1, - STATE(1365), 1, + ACTIONS(980), 1, + aux_sym_else_clause_token1, + STATE(1364), 1, sym_text_interpolation, - STATE(410), 2, - sym_catch_clause, - sym_finally_clause, - [47731] = 6, + ACTIONS(978), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2803), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47853] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_PIPE, - STATE(1366), 1, + ACTIONS(1008), 1, + aux_sym_else_clause_token1, + STATE(1365), 1, sym_text_interpolation, - STATE(1370), 1, - aux_sym_union_type_repeat1, - ACTIONS(2681), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [47752] = 6, + ACTIONS(1006), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2805), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47874] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2509), 1, + ACTIONS(2762), 1, sym_name, - STATE(1367), 1, + STATE(1366), 1, sym_text_interpolation, - STATE(1756), 1, - sym__reserved_identifier, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [47773] = 6, + STATE(1451), 1, + sym_namespace_name, + STATE(1899), 1, + sym_namespace_use_group_clause, + ACTIONS(2764), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [47897] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(987), 1, + ACTIONS(986), 1, aux_sym_else_clause_token1, - STATE(1368), 1, + STATE(1367), 1, sym_text_interpolation, - ACTIONS(985), 2, + ACTIONS(984), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2802), 2, + ACTIONS(2807), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47794] = 6, + [47918] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2768), 1, - anon_sym_PIPE, - STATE(1331), 1, - aux_sym_union_type_repeat1, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, + ACTIONS(2719), 1, + anon_sym_LBRACE, + ACTIONS(2725), 1, + anon_sym_LBRACK, + ACTIONS(2809), 1, + anon_sym_DASH_GT, + ACTIONS(2811), 1, + anon_sym_QMARK_DASH_GT, + STATE(1368), 1, + sym_text_interpolation, + [47943] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2536), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1369), 1, sym_text_interpolation, - ACTIONS(2681), 3, + STATE(1731), 1, + sym_namespace_aliasing_clause, + ACTIONS(2534), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [47815] = 5, + anon_sym_COMMA, + [47964] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2804), 1, - anon_sym_PIPE, - STATE(1370), 2, + ACTIONS(1475), 1, + anon_sym_BSLASH, + STATE(1370), 1, sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(2617), 3, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2556), 3, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [47834] = 8, + aux_sym_class_interface_clause_token1, + [47985] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(199), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2774), 1, - sym_name, - ACTIONS(2776), 1, - anon_sym_BSLASH, - STATE(437), 1, - sym_compound_statement, - STATE(1314), 1, - sym_namespace_name, - STATE(1371), 1, + ACTIONS(2813), 1, + anon_sym_COMMA, + STATE(1371), 2, sym_text_interpolation, - [47859] = 6, + aux_sym_base_clause_repeat1, + ACTIONS(2556), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [48004] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2809), 1, - anon_sym_COLON, - STATE(1372), 1, + ACTIONS(2818), 1, + anon_sym_BSLASH, + STATE(1372), 2, sym_text_interpolation, - STATE(1697), 1, - sym__return_type, - ACTIONS(2807), 3, + aux_sym_namespace_name_repeat1, + ACTIONS(2816), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [47880] = 5, + [48023] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_BSLASH, - STATE(1373), 2, + ACTIONS(1874), 1, + anon_sym_DOLLAR, + ACTIONS(2821), 1, + sym_name, + ACTIONS(2823), 1, + anon_sym_LBRACE, + STATE(1373), 1, sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(2741), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [47899] = 6, + STATE(659), 2, + sym_dynamic_variable_name, + sym_variable_name, + [48046] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2809), 1, - anon_sym_COLON, + ACTIONS(2680), 1, + anon_sym_LBRACE, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, + ACTIONS(2688), 1, + anon_sym_LBRACK, + ACTIONS(2825), 1, + anon_sym_DASH_GT, + ACTIONS(2827), 1, + anon_sym_QMARK_DASH_GT, STATE(1374), 1, sym_text_interpolation, - STATE(1640), 1, - sym__return_type, - ACTIONS(2814), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [47920] = 7, + [48071] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(920), 1, - aux_sym_while_statement_token1, - ACTIONS(922), 1, - aux_sym_else_clause_token1, - ACTIONS(2816), 1, - aux_sym_else_if_clause_token1, - STATE(1681), 1, - sym_else_if_clause, + ACTIONS(2829), 1, + anon_sym_BSLASH, STATE(1375), 2, sym_text_interpolation, - aux_sym_if_statement_repeat1, - [47943] = 5, + aux_sym_namespace_name_repeat1, + ACTIONS(2816), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [48090] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2821), 1, - anon_sym_EQ, + ACTIONS(2793), 1, + anon_sym_PIPE, + STATE(1315), 1, + aux_sym_union_type_repeat1, STATE(1376), 1, sym_text_interpolation, - ACTIONS(2819), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [47961] = 7, + ACTIONS(2733), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [48111] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(202), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(2823), 1, - anon_sym_AMP, - ACTIONS(2825), 1, - anon_sym_RPAREN, + ACTIONS(2731), 1, + anon_sym_BSLASH, + STATE(466), 1, + sym_compound_statement, STATE(1377), 1, sym_text_interpolation, - STATE(1826), 1, - sym_variable_name, - [47983] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(2832), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48134] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(2827), 1, - ts_builtin_sym_end, + ACTIONS(595), 1, + sym_comment, STATE(1378), 1, sym_text_interpolation, - ACTIONS(2829), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [48001] = 6, + ACTIONS(2834), 5, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [48151] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2833), 1, - anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_BSLASH, + STATE(1313), 1, + aux_sym_namespace_name_repeat1, STATE(1379), 1, sym_text_interpolation, - STATE(1420), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(2831), 2, + ACTIONS(2644), 3, sym__automatic_semicolon, anon_sym_SEMI, - [48021] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, + anon_sym_LBRACE, + [48172] = 6, + ACTIONS(5), 1, sym_comment, - STATE(1380), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2784), 1, + sym_php_tag, + ACTIONS(2789), 1, + ts_builtin_sym_end, + ACTIONS(2839), 2, + aux_sym_text_token1, + aux_sym_text_token2, + STATE(1380), 2, sym_text_interpolation, - ACTIONS(2741), 4, - anon_sym_COMMA, - anon_sym_BSLASH, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [48037] = 6, + aux_sym_text_repeat1, + [48193] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2837), 1, - anon_sym_COMMA, STATE(1381), 1, sym_text_interpolation, - STATE(1404), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(2835), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48057] = 6, + ACTIONS(2842), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48209] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COMMA, + ACTIONS(2846), 1, + anon_sym_EQ, STATE(1382), 1, sym_text_interpolation, - STATE(1416), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(2839), 2, + ACTIONS(2844), 3, sym__automatic_semicolon, anon_sym_SEMI, - [48077] = 4, + anon_sym_COMMA, + [48227] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2850), 1, + anon_sym_COMMA, STATE(1383), 1, sym_text_interpolation, - ACTIONS(2843), 4, + STATE(1443), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(2848), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [48093] = 4, + [48247] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1384), 1, sym_text_interpolation, - ACTIONS(2843), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON, - [48109] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(2816), 4, + anon_sym_COMMA, + anon_sym_BSLASH, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [48263] = 5, + ACTIONS(5), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2852), 1, + ts_builtin_sym_end, STATE(1385), 1, sym_text_interpolation, - ACTIONS(2845), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON, - [48125] = 4, + ACTIONS(2854), 3, + sym_php_tag, + aux_sym_text_token1, + aux_sym_text_token2, + [48281] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2858), 1, + anon_sym_COMMA, STATE(1386), 1, sym_text_interpolation, - ACTIONS(2555), 4, + STATE(1417), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(2856), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [48141] = 6, + [48301] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_COMMA, STATE(1387), 1, sym_text_interpolation, - STATE(1411), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2847), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48161] = 6, + STATE(1957), 1, + sym_declare_directive, + ACTIONS(2860), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [48319] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2850), 1, anon_sym_COMMA, STATE(1388), 1, sym_text_interpolation, - STATE(1390), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(2851), 2, + STATE(1434), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(2848), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48181] = 7, + [48339] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(427), 1, - sym_declaration_list, STATE(1389), 1, sym_text_interpolation, - STATE(1796), 1, - sym_class_interface_clause, - [48203] = 6, + ACTIONS(1486), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [48355] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2864), 1, anon_sym_COMMA, STATE(1390), 1, sym_text_interpolation, - STATE(1456), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(2855), 2, + STATE(1470), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(2862), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48223] = 6, + [48375] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, STATE(1391), 1, sym_text_interpolation, - STATE(1749), 1, - sym_arguments, - ACTIONS(2553), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [48243] = 4, + ACTIONS(2866), 4, + anon_sym_RBRACE, + aux_sym_match_default_expression_token1, + aux_sym_switch_block_token1, + aux_sym_case_statement_token1, + [48391] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1392), 1, sym_text_interpolation, - ACTIONS(2857), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [48259] = 7, + ACTIONS(2868), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON, + [48407] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2852), 1, + sym__eof, + STATE(1393), 1, + sym_text_interpolation, + ACTIONS(2854), 3, + sym_php_tag, + aux_sym_text_token1, + aux_sym_text_token2, + [48425] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2859), 1, + STATE(1394), 1, + sym_text_interpolation, + ACTIONS(2870), 4, anon_sym_COMMA, - ACTIONS(2861), 1, anon_sym_EQ, - ACTIONS(2863), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(1393), 1, - sym_text_interpolation, - STATE(1730), 1, - aux_sym__array_destructing_repeat1, - [48281] = 7, + [48441] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, + ACTIONS(2528), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2535), 1, + ACTIONS(2530), 1, anon_sym_LBRACE, - STATE(430), 1, + STATE(944), 1, sym_declaration_list, - STATE(1394), 1, + STATE(1395), 1, sym_text_interpolation, - STATE(1806), 1, + STATE(1768), 1, sym_class_interface_clause, - [48303] = 4, + [48463] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1395), 1, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(1396), 1, sym_text_interpolation, - ACTIONS(2865), 4, + STATE(1742), 1, + sym_arguments, + ACTIONS(2636), 2, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_RBRACK, - [48319] = 4, + [48483] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1396), 1, - sym_text_interpolation, - ACTIONS(2867), 4, + ACTIONS(2872), 1, anon_sym_COMMA, + ACTIONS(2874), 1, anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2876), 1, anon_sym_RBRACK, - [48335] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2871), 1, - anon_sym_COMMA, - ACTIONS(2869), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1397), 2, + STATE(1397), 1, sym_text_interpolation, - aux_sym_namespace_use_declaration_repeat1, - [48353] = 4, + STATE(1710), 1, + aux_sym__array_destructing_repeat1, + [48505] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2872), 1, + anon_sym_COMMA, + ACTIONS(2874), 1, + anon_sym_EQ, + ACTIONS(2878), 1, + anon_sym_RBRACK, STATE(1398), 1, sym_text_interpolation, - ACTIONS(2874), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON, - [48369] = 7, + STATE(1592), 1, + aux_sym__array_destructing_repeat1, + [48527] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2859), 1, + ACTIONS(2632), 1, anon_sym_COMMA, - ACTIONS(2861), 1, - anon_sym_EQ, - ACTIONS(2876), 1, - anon_sym_RBRACK, STATE(1399), 1, sym_text_interpolation, - STATE(1528), 1, - aux_sym__array_destructing_repeat1, - [48391] = 7, + STATE(1444), 1, + aux_sym_base_clause_repeat1, + ACTIONS(2634), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [48547] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(2880), 1, + anon_sym_SEMI, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(959), 1, + ACTIONS(2884), 1, + sym__automatic_semicolon, + STATE(1133), 1, sym_compound_statement, STATE(1400), 1, sym_text_interpolation, - STATE(1847), 1, - sym__return_type, - [48413] = 5, + [48569] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2880), 1, - anon_sym_PIPE, - ACTIONS(2878), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, + ACTIONS(2888), 1, + anon_sym_COMMA, + ACTIONS(2886), 2, + sym__automatic_semicolon, + anon_sym_SEMI, STATE(1401), 2, sym_text_interpolation, - aux_sym_type_list_repeat1, - [48431] = 6, + aux_sym__const_declaration_repeat1, + [48587] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2837), 1, - anon_sym_COMMA, STATE(1402), 1, sym_text_interpolation, - STATE(1404), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(2883), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48451] = 7, + ACTIONS(2891), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48603] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(755), 1, anon_sym_COMMA, - ACTIONS(2861), 1, + ACTIONS(2874), 1, anon_sym_EQ, - ACTIONS(2885), 1, + ACTIONS(2893), 1, anon_sym_RPAREN, STATE(1403), 1, sym_text_interpolation, - STATE(1645), 1, + STATE(1696), 1, aux_sym__list_destructing_repeat1, - [48473] = 5, + [48625] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2889), 1, - anon_sym_COMMA, - ACTIONS(2887), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1404), 2, + ACTIONS(2897), 1, + anon_sym_PIPE, + STATE(1404), 1, sym_text_interpolation, - aux_sym_property_declaration_repeat2, - [48491] = 6, + STATE(1461), 1, + aux_sym_type_list_repeat1, + ACTIONS(2895), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [48645] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2837), 1, - anon_sym_COMMA, - STATE(1381), 1, - aux_sym_property_declaration_repeat2, STATE(1405), 1, sym_text_interpolation, - ACTIONS(2892), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48511] = 7, + ACTIONS(2899), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48661] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_declaration_list, + ACTIONS(2903), 1, + anon_sym_COMMA, STATE(1406), 1, sym_text_interpolation, - STATE(1770), 1, - sym_class_interface_clause, - [48533] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + STATE(1439), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(2901), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48681] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(2827), 1, - sym__eof, + ACTIONS(595), 1, + sym_comment, STATE(1407), 1, sym_text_interpolation, - ACTIONS(2829), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [48551] = 6, + ACTIONS(2868), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [48697] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2837), 1, - anon_sym_COMMA, - STATE(1404), 1, - aux_sym_property_declaration_repeat2, STATE(1408), 1, sym_text_interpolation, - ACTIONS(2894), 2, + ACTIONS(2584), 4, sym__automatic_semicolon, anon_sym_SEMI, - [48571] = 7, + anon_sym_LBRACE, + anon_sym_PIPE, + [48713] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(2823), 1, - anon_sym_AMP, - ACTIONS(2896), 1, - anon_sym_RPAREN, STATE(1409), 1, sym_text_interpolation, - STATE(1826), 1, - sym_variable_name, - [48593] = 7, + ACTIONS(2448), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [48729] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(2898), 1, - anon_sym_AMP, - ACTIONS(2900), 1, - anon_sym_DOT_DOT_DOT, STATE(1410), 1, sym_text_interpolation, - STATE(1659), 1, - sym_variable_name, - [48615] = 6, + ACTIONS(2572), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [48745] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_COMMA, - STATE(1397), 1, - aux_sym_namespace_use_declaration_repeat1, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(2905), 1, + anon_sym_AMP, + ACTIONS(2907), 1, + anon_sym_DOT_DOT_DOT, STATE(1411), 1, sym_text_interpolation, - ACTIONS(2902), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48635] = 6, + STATE(1643), 1, + sym_variable_name, + [48767] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2906), 1, - aux_sym_namespace_aliasing_clause_token1, STATE(1412), 1, sym_text_interpolation, - STATE(1864), 1, - sym_namespace_aliasing_clause, - ACTIONS(2904), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48655] = 4, + STATE(2014), 1, + sym_declare_directive, + ACTIONS(2860), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [48785] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(2909), 1, + anon_sym_AMP, + ACTIONS(2911), 1, + anon_sym_RPAREN, STATE(1413), 1, sym_text_interpolation, - ACTIONS(2908), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [48671] = 6, + STATE(1870), 1, + sym_variable_name, + [48807] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2833), 1, - anon_sym_COMMA, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(2913), 1, + anon_sym_AMP, + ACTIONS(2915), 1, + anon_sym_DOT_DOT_DOT, STATE(1414), 1, sym_text_interpolation, - STATE(1458), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(2910), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48691] = 6, + STATE(1540), 1, + sym_variable_name, + [48829] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COMMA, STATE(1415), 1, sym_text_interpolation, - STATE(1459), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(2912), 2, + ACTIONS(2816), 4, sym__automatic_semicolon, anon_sym_SEMI, - [48711] = 5, + anon_sym_BSLASH, + anon_sym_LBRACE, + [48845] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2916), 1, - anon_sym_COMMA, - ACTIONS(2914), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1416), 2, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + STATE(429), 1, + sym_declaration_list, + STATE(1416), 1, sym_text_interpolation, - aux_sym_global_declaration_repeat1, - [48729] = 6, + STATE(1783), 1, + sym_class_interface_clause, + [48867] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2849), 1, + ACTIONS(2858), 1, anon_sym_COMMA, + STATE(1401), 1, + aux_sym__const_declaration_repeat1, STATE(1417), 1, sym_text_interpolation, - STATE(1462), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2919), 2, + ACTIONS(2917), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48749] = 4, + [48887] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_declaration_list, STATE(1418), 1, sym_text_interpolation, - ACTIONS(2741), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BSLASH, - anon_sym_LBRACE, - [48765] = 7, + STATE(1794), 1, + sym_class_interface_clause, + [48909] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(2921), 1, - anon_sym_AMP, - ACTIONS(2923), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(2864), 1, + anon_sym_COMMA, STATE(1419), 1, sym_text_interpolation, - STATE(1585), 1, - sym_variable_name, - [48787] = 5, + STATE(1463), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(2919), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48929] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(2925), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1420), 2, + STATE(1420), 1, sym_text_interpolation, - aux_sym_function_static_declaration_repeat1, - [48805] = 6, + STATE(1464), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(2921), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48949] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_COMMA, STATE(1421), 1, sym_text_interpolation, - STATE(1469), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(2930), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48825] = 4, + ACTIONS(2925), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON, + [48965] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2850), 1, + anon_sym_COMMA, STATE(1422), 1, sym_text_interpolation, - ACTIONS(2932), 4, - anon_sym_RBRACE, - aux_sym_match_default_expression_token1, - aux_sym_switch_block_token1, - aux_sym_case_statement_token1, - [48841] = 4, + STATE(1467), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(2927), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48985] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1423), 1, - sym_text_interpolation, - ACTIONS(2934), 4, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(2931), 1, + anon_sym_PIPE, + ACTIONS(2929), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - [48857] = 7, + anon_sym_DOLLAR, + STATE(1423), 2, + sym_text_interpolation, + aux_sym_type_list_repeat1, + [49003] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, - aux_sym_base_clause_token1, + STATE(906), 1, + sym_compound_statement, STATE(1424), 1, sym_text_interpolation, - STATE(1499), 1, - sym_declaration_list, - STATE(1792), 1, - sym_base_clause, - [48879] = 5, + STATE(1822), 1, + sym__return_type, + [49025] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2858), 1, + anon_sym_COMMA, + STATE(1401), 1, + aux_sym__const_declaration_repeat1, STATE(1425), 1, sym_text_interpolation, - STATE(1961), 1, - sym_declare_directive, - ACTIONS(2936), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [48897] = 4, + ACTIONS(2934), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49045] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2858), 1, + anon_sym_COMMA, STATE(1426), 1, sym_text_interpolation, - ACTIONS(2845), 4, + STATE(1474), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(2936), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [48913] = 4, + [49065] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1427), 1, sym_text_interpolation, - ACTIONS(2617), 4, + ACTIONS(2925), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PIPE, - [48929] = 7, + anon_sym_COLON, + [49081] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_LBRACE, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(879), 1, - sym_compound_statement, + ACTIONS(2858), 1, + anon_sym_COMMA, + STATE(1425), 1, + aux_sym__const_declaration_repeat1, STATE(1428), 1, sym_text_interpolation, - STATE(1817), 1, - sym__return_type, - [48951] = 7, + ACTIONS(2938), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49101] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2487), 1, - aux_sym_base_clause_token1, - ACTIONS(2938), 1, + ACTIONS(2524), 1, anon_sym_LBRACE, - STATE(481), 1, - sym_declaration_list, + ACTIONS(2526), 1, + aux_sym_base_clause_token1, STATE(1429), 1, sym_text_interpolation, - STATE(1737), 1, + STATE(1658), 1, + sym_declaration_list, + STATE(1801), 1, sym_base_clause, - [48973] = 6, + [49123] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_COMMA, STATE(1430), 1, sym_text_interpolation, - STATE(1438), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(2940), 2, + ACTIONS(2588), 4, sym__automatic_semicolon, anon_sym_SEMI, - [48993] = 4, + anon_sym_LBRACE, + anon_sym_PIPE, + [49139] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2858), 1, + anon_sym_COMMA, + STATE(1401), 1, + aux_sym__const_declaration_repeat1, STATE(1431), 1, sym_text_interpolation, - ACTIONS(1485), 4, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [49009] = 6, + ACTIONS(2938), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49159] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2849), 1, + ACTIONS(2858), 1, anon_sym_COMMA, + STATE(1401), 1, + aux_sym__const_declaration_repeat1, STATE(1432), 1, sym_text_interpolation, - STATE(1445), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2942), 2, + ACTIONS(2856), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49029] = 7, + [49179] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_LBRACE, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(901), 1, - sym_compound_statement, STATE(1433), 1, sym_text_interpolation, - STATE(1941), 1, - sym__return_type, - [49051] = 6, + ACTIONS(2940), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49195] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - STATE(1382), 1, - aux_sym_global_declaration_repeat1, - STATE(1434), 1, - sym_text_interpolation, - ACTIONS(2944), 2, + ACTIONS(2942), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49071] = 7, + STATE(1434), 2, + sym_text_interpolation, + aux_sym_namespace_use_declaration_repeat1, + [49213] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, + ACTIONS(2560), 1, anon_sym_COLON, - STATE(758), 1, + ACTIONS(2578), 1, + anon_sym_LBRACE, + STATE(926), 1, sym_compound_statement, STATE(1435), 1, sym_text_interpolation, - STATE(1803), 1, + STATE(1808), 1, sym__return_type, - [49093] = 6, + [49235] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2858), 1, anon_sym_COMMA, + STATE(1431), 1, + aux_sym__const_declaration_repeat1, STATE(1436), 1, sym_text_interpolation, - STATE(1456), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(2946), 2, + ACTIONS(2947), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49113] = 6, + [49255] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2833), 1, + ACTIONS(2903), 1, anon_sym_COMMA, - STATE(1379), 1, - aux_sym_function_static_declaration_repeat1, STATE(1437), 1, sym_text_interpolation, - ACTIONS(2948), 2, + STATE(1439), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(2949), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49133] = 6, + [49275] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_COMMA, STATE(1438), 1, sym_text_interpolation, - STATE(1456), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(2851), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49153] = 6, + ACTIONS(2951), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49291] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2955), 1, anon_sym_COMMA, - STATE(1436), 1, - aux_sym__const_declaration_repeat1, - STATE(1439), 1, - sym_text_interpolation, - ACTIONS(2950), 2, + ACTIONS(2953), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49173] = 6, + STATE(1439), 2, + sym_text_interpolation, + aux_sym_property_declaration_repeat2, + [49309] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2903), 1, anon_sym_COMMA, + STATE(1406), 1, + aux_sym_property_declaration_repeat2, STATE(1440), 1, sym_text_interpolation, - STATE(1456), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(2950), 2, + ACTIONS(2958), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49193] = 7, + [49329] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_SEMI, - ACTIONS(2954), 1, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2568), 1, anon_sym_LBRACE, - ACTIONS(2956), 1, - sym__automatic_semicolon, - STATE(1140), 1, - sym_compound_statement, + STATE(417), 1, + sym_declaration_list, STATE(1441), 1, sym_text_interpolation, - [49215] = 7, + STATE(1817), 1, + sym_class_interface_clause, + [49351] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_declaration_list, + ACTIONS(2903), 1, + anon_sym_COMMA, + STATE(1439), 1, + aux_sym_property_declaration_repeat2, STATE(1442), 1, sym_text_interpolation, - STATE(1836), 1, - sym_class_interface_clause, - [49237] = 6, + ACTIONS(2960), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49371] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(2850), 1, anon_sym_COMMA, + STATE(1434), 1, + aux_sym_namespace_use_declaration_repeat1, STATE(1443), 1, sym_text_interpolation, - STATE(1480), 1, - aux_sym_base_clause_repeat1, - ACTIONS(2615), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [49257] = 6, + ACTIONS(2962), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49391] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2960), 1, - anon_sym_PIPE, - STATE(1401), 1, - aux_sym_type_list_repeat1, + ACTIONS(2632), 1, + anon_sym_COMMA, STATE(1444), 1, sym_text_interpolation, - ACTIONS(2958), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [49277] = 6, + STATE(1475), 1, + aux_sym_base_clause_repeat1, + ACTIONS(2964), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [49411] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2849), 1, + ACTIONS(2968), 1, anon_sym_COMMA, - STATE(1397), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1445), 1, - sym_text_interpolation, - ACTIONS(2847), 2, + ACTIONS(2966), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49297] = 6, + STATE(1445), 2, + sym_text_interpolation, + aux_sym_global_declaration_repeat1, + [49429] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_COMMA, - STATE(1440), 1, - aux_sym__const_declaration_repeat1, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(958), 1, + sym_declaration_list, STATE(1446), 1, sym_text_interpolation, - ACTIONS(2962), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49317] = 5, + STATE(1792), 1, + sym_class_interface_clause, + [49451] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2964), 1, - anon_sym_COMMA, - ACTIONS(2565), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - STATE(1447), 2, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(2909), 1, + anon_sym_AMP, + ACTIONS(2971), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_text_interpolation, - aux_sym_base_clause_repeat1, - [49335] = 6, + STATE(1870), 1, + sym_variable_name, + [49473] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2837), 1, - anon_sym_COMMA, - STATE(1402), 1, - aux_sym_property_declaration_repeat2, + ACTIONS(2526), 1, + aux_sym_base_clause_token1, + ACTIONS(2973), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym_declaration_list, STATE(1448), 1, sym_text_interpolation, - ACTIONS(2967), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49355] = 6, + STATE(1859), 1, + sym_base_clause, + [49495] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(2858), 1, anon_sym_COMMA, - STATE(1404), 1, - aux_sym_property_declaration_repeat2, + STATE(1432), 1, + aux_sym__const_declaration_repeat1, STATE(1449), 1, sym_text_interpolation, - ACTIONS(2969), 2, + ACTIONS(2975), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49375] = 7, + [49515] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACE, - ACTIONS(2971), 1, - anon_sym_SEMI, - ACTIONS(2973), 1, - sym__automatic_semicolon, - STATE(1157), 1, - sym_compound_statement, + ACTIONS(2850), 1, + anon_sym_COMMA, + STATE(1388), 1, + aux_sym_namespace_use_declaration_repeat1, STATE(1450), 1, sym_text_interpolation, - [49397] = 4, + ACTIONS(2977), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49535] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2981), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1451), 1, sym_text_interpolation, - ACTIONS(2975), 4, + STATE(1819), 1, + sym_namespace_aliasing_clause, + ACTIONS(2979), 2, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49413] = 7, + anon_sym_RBRACE, + [49555] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(420), 1, - sym_declaration_list, + ACTIONS(2923), 1, + anon_sym_COMMA, STATE(1452), 1, sym_text_interpolation, - STATE(1916), 1, - sym_class_interface_clause, - [49435] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACE, - ACTIONS(2977), 1, - anon_sym_SEMI, - ACTIONS(2979), 1, - sym__automatic_semicolon, - STATE(1148), 1, - sym_compound_statement, STATE(1453), 1, - sym_text_interpolation, - [49457] = 6, + aux_sym_global_declaration_repeat1, + ACTIONS(2983), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49575] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - STATE(1408), 1, - aux_sym_property_declaration_repeat2, - STATE(1454), 1, + STATE(1445), 1, + aux_sym_global_declaration_repeat1, + STATE(1453), 1, sym_text_interpolation, - ACTIONS(2981), 2, + ACTIONS(2985), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49477] = 7, + [49595] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(2823), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_RPAREN, - STATE(1455), 1, + STATE(1454), 1, sym_text_interpolation, - STATE(1826), 1, - sym_variable_name, - [49499] = 5, + STATE(1972), 1, + sym_declare_directive, + ACTIONS(2860), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [49613] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(2864), 1, anon_sym_COMMA, - ACTIONS(2985), 2, + STATE(1390), 1, + aux_sym_function_static_declaration_repeat1, + STATE(1455), 1, + sym_text_interpolation, + ACTIONS(2987), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1456), 2, + [49633] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + STATE(1456), 1, sym_text_interpolation, - aux_sym__const_declaration_repeat1, - [49517] = 4, + ACTIONS(2989), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49649] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1362), 1, + sym_declaration_list, STATE(1457), 1, sym_text_interpolation, - ACTIONS(2990), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON, - [49533] = 6, + STATE(1917), 1, + sym_class_interface_clause, + [49671] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2833), 1, - anon_sym_COMMA, - STATE(1420), 1, - aux_sym_function_static_declaration_repeat1, STATE(1458), 1, sym_text_interpolation, - ACTIONS(2992), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49553] = 6, + ACTIONS(2991), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49687] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COMMA, - STATE(1416), 1, - aux_sym_global_declaration_repeat1, + ACTIONS(2882), 1, + anon_sym_LBRACE, + ACTIONS(2993), 1, + anon_sym_SEMI, + ACTIONS(2995), 1, + sym__automatic_semicolon, + STATE(1162), 1, + sym_compound_statement, STATE(1459), 1, sym_text_interpolation, - ACTIONS(2994), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49573] = 6, + [49709] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_COMMA, STATE(1460), 1, sym_text_interpolation, - STATE(1484), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2996), 2, + ACTIONS(2997), 4, sym__automatic_semicolon, anon_sym_SEMI, - [49593] = 4, + anon_sym_LBRACE, + anon_sym_COLON, + [49725] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2897), 1, + anon_sym_PIPE, + STATE(1423), 1, + aux_sym_type_list_repeat1, STATE(1461), 1, sym_text_interpolation, - ACTIONS(2874), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [49609] = 6, + ACTIONS(2999), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [49745] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_COMMA, - STATE(1397), 1, - aux_sym_namespace_use_declaration_repeat1, + ACTIONS(2560), 1, + anon_sym_COLON, + STATE(748), 1, + sym_compound_statement, STATE(1462), 1, sym_text_interpolation, - ACTIONS(2996), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49629] = 4, + STATE(1931), 1, + sym__return_type, + [49767] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2864), 1, + anon_sym_COMMA, STATE(1463), 1, sym_text_interpolation, - ACTIONS(2585), 4, + STATE(1470), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3001), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [49645] = 7, + [49787] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1339), 1, - sym_declaration_list, + ACTIONS(2923), 1, + anon_sym_COMMA, + STATE(1445), 1, + aux_sym_global_declaration_repeat1, STATE(1464), 1, sym_text_interpolation, - STATE(1915), 1, - sym_class_interface_clause, - [49667] = 6, + ACTIONS(3003), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49807] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2906), 1, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2850), 1, + anon_sym_COMMA, STATE(1465), 1, sym_text_interpolation, - STATE(1835), 1, - sym_namespace_aliasing_clause, - ACTIONS(2998), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [49687] = 7, + STATE(1492), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3005), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49827] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(779), 1, + ACTIONS(2882), 1, + anon_sym_LBRACE, + ACTIONS(3007), 1, + anon_sym_SEMI, + ACTIONS(3009), 1, + sym__automatic_semicolon, + STATE(1139), 1, sym_compound_statement, STATE(1466), 1, sym_text_interpolation, - STATE(1881), 1, - sym__return_type, - [49709] = 5, + [49849] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2850), 1, + anon_sym_COMMA, + STATE(1434), 1, + aux_sym_namespace_use_declaration_repeat1, STATE(1467), 1, sym_text_interpolation, - STATE(2088), 1, - sym_declare_directive, - ACTIONS(2936), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [49727] = 7, + ACTIONS(3005), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49869] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(766), 1, - sym_compound_statement, + ACTIONS(2903), 1, + anon_sym_COMMA, STATE(1468), 1, sym_text_interpolation, - STATE(1745), 1, - sym__return_type, - [49749] = 6, + STATE(1490), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3011), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49889] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_COMMA, - STATE(1456), 1, - aux_sym__const_declaration_repeat1, + ACTIONS(2882), 1, + anon_sym_LBRACE, + ACTIONS(3013), 1, + anon_sym_SEMI, + ACTIONS(3015), 1, + sym__automatic_semicolon, + STATE(1150), 1, + sym_compound_statement, STATE(1469), 1, sym_text_interpolation, - ACTIONS(3000), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49769] = 7, + [49911] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_declaration_list, - STATE(1470), 1, + ACTIONS(3019), 1, + anon_sym_COMMA, + ACTIONS(3017), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1470), 2, sym_text_interpolation, - STATE(1879), 1, - sym_class_interface_clause, - [49791] = 4, + aux_sym_function_static_declaration_repeat1, + [49929] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1471), 1, sym_text_interpolation, - ACTIONS(2397), 4, + ACTIONS(2640), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [49807] = 7, + [49945] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, + ACTIONS(2528), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - STATE(1361), 1, + STATE(424), 1, sym_declaration_list, STATE(1472), 1, sym_text_interpolation, - STATE(1746), 1, + STATE(1909), 1, sym_class_interface_clause, - [49829] = 6, + [49967] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, - ACTIONS(2837), 1, - anon_sym_COMMA, - STATE(1449), 1, - aux_sym_property_declaration_repeat2, + ACTIONS(2560), 1, + anon_sym_COLON, + STATE(781), 1, + sym_compound_statement, STATE(1473), 1, sym_text_interpolation, - ACTIONS(3002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49849] = 6, + STATE(1865), 1, + sym__return_type, + [49989] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2858), 1, anon_sym_COMMA, - STATE(1456), 1, + STATE(1401), 1, aux_sym__const_declaration_repeat1, STATE(1474), 1, sym_text_interpolation, - ACTIONS(3004), 2, + ACTIONS(3022), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49869] = 7, + [50009] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2497), 1, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(2556), 2, anon_sym_LBRACE, - STATE(1368), 1, - sym_declaration_list, - STATE(1475), 1, + aux_sym_class_interface_clause_token1, + STATE(1475), 2, sym_text_interpolation, - STATE(1866), 1, - sym_class_interface_clause, - [49891] = 4, + aux_sym_base_clause_repeat1, + [50027] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1476), 1, sym_text_interpolation, - ACTIONS(2603), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2997), 4, + aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, - anon_sym_PIPE, - [49907] = 7, + anon_sym_EQ_GT, + anon_sym_COLON, + [50043] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_LBRACE, - ACTIONS(2489), 1, + ACTIONS(2528), 1, aux_sym_class_interface_clause_token1, - STATE(759), 1, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1347), 1, sym_declaration_list, STATE(1477), 1, sym_text_interpolation, - STATE(1865), 1, + STATE(1875), 1, sym_class_interface_clause, - [49929] = 7, + [50065] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2489), 1, + ACTIONS(2528), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2535), 1, + ACTIONS(2530), 1, anon_sym_LBRACE, - STATE(422), 1, + STATE(1359), 1, sym_declaration_list, STATE(1478), 1, sym_text_interpolation, - STATE(1839), 1, + STATE(1933), 1, sym_class_interface_clause, - [49951] = 7, + [50087] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(2578), 1, anon_sym_LBRACE, - ACTIONS(3006), 1, - anon_sym_SEMI, - ACTIONS(3008), 1, - sym__automatic_semicolon, - STATE(1141), 1, + STATE(886), 1, sym_compound_statement, STATE(1479), 1, sym_text_interpolation, - [49973] = 6, + STATE(1907), 1, + sym__return_type, + [50109] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2613), 1, - anon_sym_COMMA, - STATE(1447), 1, - aux_sym_base_clause_repeat1, + ACTIONS(2981), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1480), 1, sym_text_interpolation, - ACTIONS(3010), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [49993] = 7, + STATE(1900), 1, + sym_namespace_aliasing_clause, + ACTIONS(3027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50129] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_LBRACE, - ACTIONS(2489), 1, - aux_sym_class_interface_clause_token1, - STATE(782), 1, - sym_declaration_list, + ACTIONS(2858), 1, + anon_sym_COMMA, + STATE(1401), 1, + aux_sym__const_declaration_repeat1, STATE(1481), 1, - sym_text_interpolation, - STATE(1776), 1, - sym_class_interface_clause, - [50015] = 4, + sym_text_interpolation, + ACTIONS(3029), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50149] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1482), 1, sym_text_interpolation, - ACTIONS(3012), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50031] = 4, + ACTIONS(3031), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON, + [50165] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1337), 1, + sym_declaration_list, STATE(1483), 1, sym_text_interpolation, - ACTIONS(2565), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [50047] = 6, + STATE(1938), 1, + sym_class_interface_clause, + [50187] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_COMMA, - STATE(1397), 1, - aux_sym_namespace_use_declaration_repeat1, STATE(1484), 1, sym_text_interpolation, - ACTIONS(3014), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50067] = 4, + STATE(1950), 1, + sym_declare_directive, + ACTIONS(2860), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [50205] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2524), 1, + anon_sym_LBRACE, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + STATE(757), 1, + sym_declaration_list, STATE(1485), 1, sym_text_interpolation, - ACTIONS(2990), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [50083] = 5, + STATE(1941), 1, + sym_class_interface_clause, + [50227] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2524), 1, + anon_sym_LBRACE, + ACTIONS(2528), 1, + aux_sym_class_interface_clause_token1, + STATE(774), 1, + sym_declaration_list, STATE(1486), 1, sym_text_interpolation, - STATE(1979), 1, - sym_declare_directive, - ACTIONS(2936), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [50101] = 4, + STATE(1886), 1, + sym_class_interface_clause, + [50249] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2903), 1, + anon_sym_COMMA, + STATE(1437), 1, + aux_sym_property_declaration_repeat2, STATE(1487), 1, sym_text_interpolation, - ACTIONS(3016), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50117] = 5, + ACTIONS(3033), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50269] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1488), 1, sym_text_interpolation, - STATE(2009), 1, - sym_declare_directive, - ACTIONS(2936), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [50135] = 6, + ACTIONS(2556), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [50285] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2960), 1, - anon_sym_PIPE, - STATE(1444), 1, - aux_sym_type_list_repeat1, STATE(1489), 1, sym_text_interpolation, - ACTIONS(3018), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [50155] = 6, + ACTIONS(3031), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [50301] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2903), 1, anon_sym_COMMA, - STATE(1474), 1, - aux_sym__const_declaration_repeat1, + STATE(1439), 1, + aux_sym_property_declaration_repeat2, STATE(1490), 1, sym_text_interpolation, - ACTIONS(3000), 2, + ACTIONS(3035), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50175] = 4, + [50321] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2903), 1, + anon_sym_COMMA, + STATE(1442), 1, + aux_sym_property_declaration_repeat2, STATE(1491), 1, sym_text_interpolation, - ACTIONS(3020), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [50190] = 6, + ACTIONS(3037), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50341] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(704), 1, - anon_sym_RBRACK, - ACTIONS(3022), 1, + ACTIONS(2850), 1, anon_sym_COMMA, + STATE(1434), 1, + aux_sym_namespace_use_declaration_repeat1, STATE(1492), 1, sym_text_interpolation, - STATE(1727), 1, - aux_sym_array_creation_expression_repeat1, - [50209] = 5, + ACTIONS(3039), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50361] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, - ACTIONS(1057), 1, - aux_sym_else_clause_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + STATE(766), 1, + sym_compound_statement, STATE(1493), 1, sym_text_interpolation, - ACTIONS(1055), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50226] = 6, + STATE(1901), 1, + sym__return_type, + [50383] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(720), 1, - anon_sym_RBRACK, - ACTIONS(3024), 1, - anon_sym_COMMA, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(2909), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_RPAREN, STATE(1494), 1, sym_text_interpolation, - STATE(1724), 1, - aux_sym_array_creation_expression_repeat1, - [50245] = 6, + STATE(1870), 1, + sym_variable_name, + [50405] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(2858), 1, anon_sym_COMMA, - ACTIONS(3028), 1, - anon_sym_RBRACK, + STATE(1481), 1, + aux_sym__const_declaration_repeat1, STATE(1495), 1, sym_text_interpolation, - STATE(1703), 1, - aux_sym_attribute_list_repeat1, - [50264] = 5, + ACTIONS(3022), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50425] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2393), 1, - anon_sym_RPAREN, - ACTIONS(3030), 1, - anon_sym_COMMA, - STATE(1496), 2, + ACTIONS(1082), 1, + aux_sym_else_clause_token1, + STATE(1496), 1, sym_text_interpolation, - aux_sym_unset_statement_repeat1, - [50281] = 6, + ACTIONS(1080), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50442] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3035), 1, - anon_sym_RPAREN, + ACTIONS(1078), 1, + aux_sym_else_clause_token1, STATE(1497), 1, sym_text_interpolation, - STATE(1522), 1, - aux_sym_arguments_repeat1, - [50300] = 6, + ACTIONS(1076), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50459] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(3037), 1, - anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_RPAREN, + ACTIONS(3043), 1, + anon_sym_COMMA, STATE(1498), 1, sym_text_interpolation, - STATE(1583), 1, - sym_variable_name, - [50319] = 5, + STATE(1579), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [50478] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(1070), 1, aux_sym_else_clause_token1, STATE(1499), 1, sym_text_interpolation, - ACTIONS(1179), 2, + ACTIONS(1068), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50336] = 5, + [50495] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1049), 1, + ACTIONS(1034), 1, aux_sym_else_clause_token1, STATE(1500), 1, sym_text_interpolation, - ACTIONS(1047), 2, + ACTIONS(1032), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50353] = 5, + [50512] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1069), 1, + ACTIONS(1050), 1, aux_sym_else_clause_token1, STATE(1501), 1, sym_text_interpolation, - ACTIONS(1067), 2, + ACTIONS(1048), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50370] = 5, + [50529] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1177), 1, + ACTIONS(1090), 1, aux_sym_else_clause_token1, STATE(1502), 1, sym_text_interpolation, - ACTIONS(1175), 2, + ACTIONS(1088), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50387] = 6, + [50546] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1578), 1, - anon_sym_RPAREN, - ACTIONS(3039), 1, + ACTIONS(3045), 1, anon_sym_COMMA, + ACTIONS(3047), 1, + anon_sym_RPAREN, STATE(1503), 1, sym_text_interpolation, - STATE(1542), 1, - aux_sym_formal_parameters_repeat1, - [50406] = 6, + STATE(1527), 1, + aux_sym_arguments_repeat1, + [50565] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(3041), 1, - anon_sym_RPAREN, + ACTIONS(1094), 1, + aux_sym_else_clause_token1, STATE(1504), 1, sym_text_interpolation, - STATE(1944), 1, - sym_variable_name, - [50425] = 5, + ACTIONS(1092), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50582] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1169), 1, - aux_sym_else_clause_token1, + ACTIONS(3041), 1, + anon_sym_RPAREN, + ACTIONS(3043), 1, + anon_sym_COMMA, STATE(1505), 1, sym_text_interpolation, - ACTIONS(1167), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50442] = 5, + STATE(1589), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [50601] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1054), 1, + aux_sym_else_clause_token1, STATE(1506), 1, sym_text_interpolation, - STATE(1434), 2, - sym_dynamic_variable_name, - sym_variable_name, - [50459] = 5, + ACTIONS(1052), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50618] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1077), 1, - aux_sym_else_clause_token1, + ACTIONS(1585), 1, + anon_sym_RPAREN, + ACTIONS(3049), 1, + anon_sym_COMMA, STATE(1507), 1, sym_text_interpolation, - ACTIONS(1075), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50476] = 6, + STATE(1549), 1, + aux_sym_formal_parameters_repeat1, + [50637] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(706), 1, - anon_sym_RPAREN, - ACTIONS(3043), 1, + ACTIONS(3051), 1, anon_sym_COMMA, + ACTIONS(3053), 1, + anon_sym_RBRACK, STATE(1508), 1, sym_text_interpolation, - STATE(1537), 1, - aux_sym_array_creation_expression_repeat1, - [50495] = 5, + STATE(1653), 1, + aux_sym_attribute_list_repeat1, + [50656] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1089), 1, + ACTIONS(1022), 1, aux_sym_else_clause_token1, STATE(1509), 1, sym_text_interpolation, - ACTIONS(1087), 2, + ACTIONS(1020), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50512] = 6, + [50673] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_COMMA, - ACTIONS(3045), 1, - anon_sym_RBRACK, - STATE(1495), 1, - aux_sym_attribute_list_repeat1, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3055), 1, + anon_sym_AMP, STATE(1510), 1, sym_text_interpolation, - [50531] = 5, + STATE(1518), 1, + sym_formal_parameters, + [50692] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1093), 1, - aux_sym_else_clause_token1, + ACTIONS(1549), 1, + anon_sym_DOLLAR, + STATE(1319), 1, + sym_variable_name, + STATE(1440), 1, + sym_property_element, STATE(1511), 1, sym_text_interpolation, - ACTIONS(1091), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50548] = 6, + [50711] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(710), 1, - anon_sym_RBRACE, - ACTIONS(3047), 1, - anon_sym_COMMA, + ACTIONS(1026), 1, + aux_sym_else_clause_token1, STATE(1512), 1, sym_text_interpolation, - STATE(1627), 1, - aux_sym_match_block_repeat1, - [50567] = 6, + ACTIONS(1024), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50728] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1995), 1, + ACTIONS(715), 1, + anon_sym_RPAREN, + ACTIONS(3057), 1, anon_sym_COMMA, - ACTIONS(3049), 1, - anon_sym_EQ_GT, STATE(1513), 1, sym_text_interpolation, - STATE(1629), 1, - aux_sym_match_condition_list_repeat1, - [50586] = 6, + STATE(1534), 1, + aux_sym_array_creation_expression_repeat1, + [50747] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(3051), 1, - anon_sym_RPAREN, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3059), 1, + anon_sym_AMP, STATE(1514), 1, sym_text_interpolation, - STATE(1657), 1, - aux_sym__list_destructing_repeat1, - [50605] = 6, + STATE(1522), 1, + sym_formal_parameters, + [50766] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3055), 1, - anon_sym_RBRACE, + ACTIONS(1042), 1, + aux_sym_else_clause_token1, STATE(1515), 1, sym_text_interpolation, - STATE(1543), 1, - aux_sym_match_block_repeat1, - [50624] = 4, + ACTIONS(1040), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50783] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3061), 1, + anon_sym_EQ_GT, STATE(1516), 1, sym_text_interpolation, - ACTIONS(3057), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [50639] = 6, + STATE(1978), 1, + sym__return_type, + [50802] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3059), 1, - anon_sym_AMP, + ACTIONS(1549), 1, + anon_sym_DOLLAR, + STATE(1319), 1, + sym_variable_name, STATE(1517), 1, sym_text_interpolation, - STATE(1628), 1, - sym_formal_parameters, - [50658] = 4, + STATE(1596), 1, + sym_property_element, + [50821] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3063), 1, + anon_sym_EQ_GT, STATE(1518), 1, sym_text_interpolation, - ACTIONS(2692), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [50673] = 4, + STATE(1976), 1, + sym__return_type, + [50840] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(721), 1, + anon_sym_RBRACK, + ACTIONS(3065), 1, + anon_sym_COMMA, STATE(1519), 1, sym_text_interpolation, - ACTIONS(3061), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [50688] = 6, + STATE(1656), 1, + aux_sym_array_creation_expression_repeat1, + [50859] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(720), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(3067), 1, anon_sym_COMMA, - STATE(1508), 1, - aux_sym_array_creation_expression_repeat1, + ACTIONS(3069), 1, + anon_sym_RBRACE, STATE(1520), 1, sym_text_interpolation, - [50707] = 5, + STATE(1548), 1, + aux_sym_match_block_repeat1, + [50878] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(1042), 1, aux_sym_else_clause_token1, STATE(1521), 1, sym_text_interpolation, - ACTIONS(1099), 2, + ACTIONS(1040), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50724] = 6, + [50895] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3065), 1, - anon_sym_RPAREN, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3071), 1, + anon_sym_EQ_GT, STATE(1522), 1, sym_text_interpolation, - STATE(1529), 1, - aux_sym_arguments_repeat1, - [50743] = 5, + STATE(1974), 1, + sym__return_type, + [50914] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1109), 1, + ACTIONS(1058), 1, aux_sym_else_clause_token1, STATE(1523), 1, sym_text_interpolation, - ACTIONS(1107), 2, + ACTIONS(1056), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50760] = 6, + [50931] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(3067), 1, - anon_sym_RBRACK, + ACTIONS(3075), 1, + anon_sym_EQ, STATE(1524), 1, sym_text_interpolation, - STATE(1725), 1, - aux_sym__array_destructing_repeat1, - [50779] = 6, + ACTIONS(3073), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50948] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3069), 1, - anon_sym_EQ_GT, + ACTIONS(1110), 1, + aux_sym_else_clause_token1, STATE(1525), 1, sym_text_interpolation, - STATE(1990), 1, - sym__return_type, - [50798] = 5, + ACTIONS(1108), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50965] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_else_clause_token1, STATE(1526), 1, sym_text_interpolation, - ACTIONS(1111), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50815] = 6, + ACTIONS(3077), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [50980] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3071), 1, - anon_sym_EQ_GT, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3079), 1, + anon_sym_RPAREN, STATE(1527), 1, sym_text_interpolation, - STATE(2080), 1, - sym__return_type, - [50834] = 6, + STATE(1560), 1, + aux_sym_arguments_repeat1, + [50999] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2859), 1, + ACTIONS(721), 1, + anon_sym_RPAREN, + ACTIONS(3081), 1, anon_sym_COMMA, - ACTIONS(3073), 1, - anon_sym_RBRACK, + STATE(1513), 1, + aux_sym_array_creation_expression_repeat1, STATE(1528), 1, sym_text_interpolation, - STATE(1725), 1, - aux_sym__array_destructing_repeat1, - [50853] = 5, + [51018] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_COMMA, - ACTIONS(3078), 1, - anon_sym_RPAREN, - STATE(1529), 2, + STATE(1529), 1, sym_text_interpolation, - aux_sym_arguments_repeat1, - [50870] = 6, + ACTIONS(2556), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [51033] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2613), 1, - anon_sym_COMMA, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(1447), 1, - aux_sym_base_clause_repeat1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3083), 1, + anon_sym_EQ_GT, STATE(1530), 1, sym_text_interpolation, - [50889] = 5, + STATE(2002), 1, + sym__return_type, + [51052] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3084), 1, - anon_sym_EQ, + ACTIONS(3085), 1, + anon_sym_COMMA, + ACTIONS(3087), 1, + anon_sym_RBRACE, STATE(1531), 1, sym_text_interpolation, - ACTIONS(3082), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50906] = 5, + STATE(1573), 1, + aux_sym_namespace_use_group_repeat1, + [51071] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1125), 1, + ACTIONS(1074), 1, aux_sym_else_clause_token1, STATE(1532), 1, sym_text_interpolation, - ACTIONS(1123), 2, + ACTIONS(1072), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50923] = 5, + [51088] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1125), 1, - aux_sym_else_clause_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3089), 1, + anon_sym_EQ_GT, STATE(1533), 1, sym_text_interpolation, - ACTIONS(1123), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50940] = 6, + STATE(1984), 1, + sym__return_type, + [51107] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1548), 1, - anon_sym_DOLLAR, - STATE(1355), 1, - sym_variable_name, - STATE(1448), 1, - sym_property_element, - STATE(1534), 1, + ACTIONS(3091), 1, + anon_sym_COMMA, + ACTIONS(3094), 1, + anon_sym_RPAREN, + STATE(1534), 2, sym_text_interpolation, - [50959] = 5, + aux_sym_array_creation_expression_repeat1, + [51124] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1149), 1, + ACTIONS(1114), 1, aux_sym_else_clause_token1, STATE(1535), 1, sym_text_interpolation, - ACTIONS(1147), 2, + ACTIONS(1112), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50976] = 6, + [51141] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(3096), 1, anon_sym_COMMA, - ACTIONS(3088), 1, + ACTIONS(3098), 1, anon_sym_RPAREN, - STATE(1503), 1, + STATE(1507), 1, aux_sym_formal_parameters_repeat1, STATE(1536), 1, sym_text_interpolation, - [50995] = 5, + [51160] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3100), 1, anon_sym_COMMA, - ACTIONS(3093), 1, + ACTIONS(3102), 1, anon_sym_RPAREN, - STATE(1537), 2, + STATE(1505), 1, + aux_sym_anonymous_function_use_clause_repeat1, + STATE(1537), 1, sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [51012] = 5, + [51179] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1153), 1, + ACTIONS(1118), 1, aux_sym_else_clause_token1, STATE(1538), 1, sym_text_interpolation, - ACTIONS(1151), 2, + ACTIONS(1116), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [51029] = 5, + [51196] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1157), 1, - aux_sym_else_clause_token1, + ACTIONS(1549), 1, + anon_sym_DOLLAR, + STATE(1319), 1, + sym_variable_name, + STATE(1487), 1, + sym_property_element, STATE(1539), 1, sym_text_interpolation, - ACTIONS(1155), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51046] = 5, + [51215] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1157), 1, - aux_sym_else_clause_token1, + ACTIONS(3106), 1, + anon_sym_EQ, STATE(1540), 1, sym_text_interpolation, - ACTIONS(1155), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51063] = 5, + ACTIONS(3104), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51232] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1173), 1, + ACTIONS(1142), 1, aux_sym_else_clause_token1, STATE(1541), 1, sym_text_interpolation, - ACTIONS(1171), 2, + ACTIONS(1140), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [51080] = 5, + [51249] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3095), 1, - anon_sym_COMMA, - ACTIONS(3098), 1, - anon_sym_RPAREN, - STATE(1542), 2, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(3108), 1, + anon_sym_DOT_DOT_DOT, + STATE(1524), 1, + sym_variable_name, + STATE(1542), 1, sym_text_interpolation, - aux_sym_formal_parameters_repeat1, - [51097] = 6, + [51268] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(3100), 1, - anon_sym_COMMA, + ACTIONS(1154), 1, + aux_sym_else_clause_token1, STATE(1543), 1, sym_text_interpolation, - STATE(1627), 1, - aux_sym_match_block_repeat1, - [51116] = 5, + ACTIONS(1152), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51285] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(3112), 1, aux_sym_else_clause_token1, STATE(1544), 1, sym_text_interpolation, - ACTIONS(1011), 2, - aux_sym_while_statement_token1, + ACTIONS(3110), 2, + aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [51133] = 5, + [51302] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1185), 1, - aux_sym_else_clause_token1, + ACTIONS(3116), 1, + anon_sym_EQ, STATE(1545), 1, sym_text_interpolation, - ACTIONS(1183), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51150] = 5, + ACTIONS(3114), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51319] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1193), 1, - aux_sym_else_clause_token1, - STATE(1546), 1, + ACTIONS(3118), 1, + anon_sym_COMMA, + ACTIONS(3121), 1, + anon_sym_RBRACE, + STATE(1546), 2, sym_text_interpolation, - ACTIONS(1191), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51167] = 5, + aux_sym_match_block_repeat1, + [51336] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1197), 1, - aux_sym_else_clause_token1, - STATE(1547), 1, + ACTIONS(2027), 1, + anon_sym_EQ_GT, + ACTIONS(3123), 1, + anon_sym_COMMA, + STATE(1547), 2, sym_text_interpolation, - ACTIONS(1195), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51184] = 5, + aux_sym_match_condition_list_repeat1, + [51353] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1205), 1, - aux_sym_else_clause_token1, + ACTIONS(717), 1, + anon_sym_RBRACE, + ACTIONS(3126), 1, + anon_sym_COMMA, + STATE(1546), 1, + aux_sym_match_block_repeat1, STATE(1548), 1, sym_text_interpolation, - ACTIONS(1203), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51201] = 5, + [51372] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1061), 1, - aux_sym_else_clause_token1, - STATE(1549), 1, + ACTIONS(3128), 1, + anon_sym_COMMA, + ACTIONS(3131), 1, + anon_sym_RPAREN, + STATE(1549), 2, sym_text_interpolation, - ACTIONS(1059), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51218] = 5, + aux_sym_formal_parameters_repeat1, + [51389] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1117), 1, - aux_sym_else_clause_token1, STATE(1550), 1, sym_text_interpolation, - ACTIONS(1115), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51235] = 6, + ACTIONS(3133), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [51404] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3102), 1, - anon_sym_AMP, + ACTIONS(755), 1, + anon_sym_COMMA, + ACTIONS(3135), 1, + anon_sym_RPAREN, STATE(1551), 1, sym_text_interpolation, - STATE(1557), 1, - sym_formal_parameters, - [51254] = 6, + STATE(1695), 1, + aux_sym__list_destructing_repeat1, + [51423] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3104), 1, - anon_sym_COMMA, - ACTIONS(3106), 1, - anon_sym_RBRACE, STATE(1552), 1, sym_text_interpolation, - STATE(1670), 1, - aux_sym_namespace_use_group_repeat1, - [51273] = 5, + ACTIONS(3137), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [51438] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1209), 1, - aux_sym_else_clause_token1, + ACTIONS(755), 1, + anon_sym_COMMA, + ACTIONS(3139), 1, + anon_sym_RPAREN, STATE(1553), 1, sym_text_interpolation, - ACTIONS(1207), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51290] = 6, + STATE(1695), 1, + aux_sym__list_destructing_repeat1, + [51457] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3108), 1, - anon_sym_AMP, + ACTIONS(1158), 1, + aux_sym_else_clause_token1, STATE(1554), 1, sym_text_interpolation, - STATE(1558), 1, - sym_formal_parameters, - [51309] = 6, + ACTIONS(1156), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51474] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3110), 1, - anon_sym_EQ_GT, + ACTIONS(1158), 1, + aux_sym_else_clause_token1, STATE(1555), 1, sym_text_interpolation, - STATE(1973), 1, - sym__return_type, - [51328] = 5, + ACTIONS(1156), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51491] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1213), 1, + ACTIONS(1170), 1, aux_sym_else_clause_token1, STATE(1556), 1, sym_text_interpolation, - ACTIONS(1211), 2, + ACTIONS(1168), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [51345] = 6, + [51508] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3112), 1, - anon_sym_EQ_GT, + ACTIONS(755), 1, + anon_sym_COMMA, + ACTIONS(3141), 1, + anon_sym_RPAREN, STATE(1557), 1, sym_text_interpolation, - STATE(1971), 1, - sym__return_type, - [51364] = 6, + STATE(1695), 1, + aux_sym__list_destructing_repeat1, + [51527] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3114), 1, - anon_sym_EQ_GT, + ACTIONS(3145), 1, + anon_sym_EQ, STATE(1558), 1, sym_text_interpolation, - STATE(1969), 1, - sym__return_type, - [51383] = 5, + ACTIONS(3143), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51544] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_EQ, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3147), 1, + anon_sym_AMP, + STATE(1301), 1, + sym_formal_parameters, STATE(1559), 1, sym_text_interpolation, - ACTIONS(3116), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51400] = 6, + [51563] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_RPAREN, - ACTIONS(3120), 1, + ACTIONS(3149), 1, anon_sym_COMMA, - STATE(1560), 1, + ACTIONS(3152), 1, + anon_sym_RPAREN, + STATE(1560), 2, sym_text_interpolation, - STATE(1672), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [51419] = 5, + aux_sym_arguments_repeat1, + [51580] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1213), 1, - aux_sym_else_clause_token1, + ACTIONS(3051), 1, + anon_sym_COMMA, + ACTIONS(3154), 1, + anon_sym_RBRACK, + STATE(1508), 1, + aux_sym_attribute_list_repeat1, STATE(1561), 1, sym_text_interpolation, - ACTIONS(1211), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51436] = 6, + [51599] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_RPAREN, - ACTIONS(3120), 1, + ACTIONS(695), 1, + anon_sym_RBRACK, + ACTIONS(3156), 1, anon_sym_COMMA, + STATE(1519), 1, + aux_sym_array_creation_expression_repeat1, STATE(1562), 1, sym_text_interpolation, - STATE(1676), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [51455] = 5, + [51618] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1221), 1, - aux_sym_else_clause_token1, + ACTIONS(3085), 1, + anon_sym_COMMA, + ACTIONS(3158), 1, + anon_sym_RBRACE, + STATE(1531), 1, + aux_sym_namespace_use_group_repeat1, STATE(1563), 1, sym_text_interpolation, - ACTIONS(1219), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51472] = 5, + [51637] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1229), 1, - aux_sym_else_clause_token1, + ACTIONS(2664), 1, + anon_sym_BSLASH, + ACTIONS(3160), 1, + sym_name, STATE(1564), 1, sym_text_interpolation, - ACTIONS(1227), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51489] = 5, + STATE(1963), 1, + sym_namespace_name, + [51656] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1229), 1, - aux_sym_else_clause_token1, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3162), 1, + anon_sym_AMP, STATE(1565), 1, sym_text_interpolation, - ACTIONS(1227), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51506] = 6, + STATE(1574), 1, + sym_formal_parameters, + [51675] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1548), 1, - anon_sym_DOLLAR, - STATE(1355), 1, - sym_variable_name, - STATE(1405), 1, - sym_property_element, + ACTIONS(1178), 1, + aux_sym_else_clause_token1, STATE(1566), 1, sym_text_interpolation, - [51525] = 6, + ACTIONS(1176), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51692] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1548), 1, - anon_sym_DOLLAR, - STATE(1355), 1, - sym_variable_name, + ACTIONS(3164), 1, + sym_name, + ACTIONS(3166), 1, + anon_sym_LBRACE, STATE(1567), 1, sym_text_interpolation, - STATE(1682), 1, - sym_property_element, - [51544] = 5, + STATE(1809), 1, + sym_namespace_use_group, + [51711] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1245), 1, + ACTIONS(1190), 1, aux_sym_else_clause_token1, STATE(1568), 1, sym_text_interpolation, - ACTIONS(1243), 2, + ACTIONS(1188), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [51561] = 5, + [51728] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1257), 1, - aux_sym_else_clause_token1, STATE(1569), 1, sym_text_interpolation, - ACTIONS(1255), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51578] = 4, + ACTIONS(3168), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [51743] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1194), 1, + aux_sym_else_clause_token1, STATE(1570), 1, sym_text_interpolation, - ACTIONS(3122), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [51593] = 5, + ACTIONS(1192), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51760] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1261), 1, + ACTIONS(1198), 1, aux_sym_else_clause_token1, STATE(1571), 1, sym_text_interpolation, - ACTIONS(1259), 2, + ACTIONS(1196), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [51610] = 4, + [51777] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(725), 1, + anon_sym_RPAREN, + ACTIONS(3170), 1, + anon_sym_COMMA, STATE(1572), 1, sym_text_interpolation, - ACTIONS(2565), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [51625] = 6, + STATE(1701), 1, + aux_sym_array_creation_expression_repeat1, + [51796] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(708), 1, - anon_sym_RPAREN, - ACTIONS(3124), 1, + ACTIONS(3172), 1, anon_sym_COMMA, - STATE(1573), 1, + ACTIONS(3175), 1, + anon_sym_RBRACE, + STATE(1573), 2, sym_text_interpolation, - STATE(1608), 1, - aux_sym_array_creation_expression_repeat1, - [51644] = 5, + aux_sym_namespace_use_group_repeat1, + [51813] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1145), 1, - aux_sym_else_clause_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3177), 1, + anon_sym_EQ_GT, STATE(1574), 1, sym_text_interpolation, - ACTIONS(1143), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51661] = 5, + STATE(1988), 1, + sym__return_type, + [51832] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1137), 1, - aux_sym_else_clause_token1, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3179), 1, + anon_sym_AMP, + STATE(1290), 1, + sym_formal_parameters, STATE(1575), 1, sym_text_interpolation, - ACTIONS(1135), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51678] = 5, + [51851] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1133), 1, + ACTIONS(1202), 1, aux_sym_else_clause_token1, STATE(1576), 1, sym_text_interpolation, - ACTIONS(1131), 2, + ACTIONS(1200), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [51695] = 5, + [51868] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1281), 1, - aux_sym_else_clause_token1, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3181), 1, + anon_sym_AMP, STATE(1577), 1, sym_text_interpolation, - ACTIONS(1279), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51712] = 5, + STATE(1584), 1, + sym_formal_parameters, + [51887] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1097), 1, - aux_sym_else_clause_token1, STATE(1578), 1, sym_text_interpolation, - ACTIONS(1095), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51729] = 5, + ACTIONS(3017), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [51902] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1269), 1, - aux_sym_else_clause_token1, + ACTIONS(2971), 1, + anon_sym_RPAREN, + ACTIONS(3183), 1, + anon_sym_COMMA, STATE(1579), 1, sym_text_interpolation, - ACTIONS(1267), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51746] = 4, + STATE(1589), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [51921] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1580), 1, sym_text_interpolation, - ACTIONS(2985), 3, + ACTIONS(2966), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [51761] = 5, + [51936] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1273), 1, - aux_sym_else_clause_token1, + ACTIONS(3185), 1, + anon_sym_LBRACE, + ACTIONS(3187), 1, + anon_sym_COLON, STATE(1581), 1, sym_text_interpolation, - ACTIONS(1271), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51778] = 5, + STATE(1644), 1, + sym_switch_block, + [51955] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1273), 1, - aux_sym_else_clause_token1, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3189), 1, + anon_sym_AMP, STATE(1582), 1, sym_text_interpolation, - ACTIONS(1271), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51795] = 6, + STATE(1590), 1, + sym_formal_parameters, + [51974] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RPAREN, - STATE(1562), 1, - aux_sym_anonymous_function_use_clause_repeat1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3191), 1, + anon_sym_EQ_GT, STATE(1583), 1, sym_text_interpolation, - [51814] = 5, + STATE(1981), 1, + sym__return_type, + [51993] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1105), 1, - aux_sym_else_clause_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3193), 1, + anon_sym_EQ_GT, STATE(1584), 1, sym_text_interpolation, - ACTIONS(1103), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51831] = 5, + STATE(1983), 1, + sym__return_type, + [52012] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3132), 1, - anon_sym_EQ, + ACTIONS(1206), 1, + aux_sym_else_clause_token1, STATE(1585), 1, sym_text_interpolation, - ACTIONS(3130), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51848] = 5, + ACTIONS(1204), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52029] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1277), 1, + ACTIONS(1014), 1, aux_sym_else_clause_token1, STATE(1586), 1, sym_text_interpolation, - ACTIONS(1275), 2, + ACTIONS(1012), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [51865] = 6, + [52046] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3134), 1, - anon_sym_EQ_GT, + ACTIONS(1322), 1, + aux_sym_else_clause_token1, STATE(1587), 1, sym_text_interpolation, - STATE(1959), 1, - sym__return_type, - [51884] = 5, + ACTIONS(1320), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52063] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1277), 1, + ACTIONS(1326), 1, aux_sym_else_clause_token1, STATE(1588), 1, sym_text_interpolation, - ACTIONS(1275), 2, + ACTIONS(1324), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [51901] = 5, + [52080] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1225), 1, - aux_sym_else_clause_token1, - STATE(1589), 1, + ACTIONS(3195), 1, + anon_sym_COMMA, + ACTIONS(3198), 1, + anon_sym_RPAREN, + STATE(1589), 2, sym_text_interpolation, - ACTIONS(1223), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51918] = 5, + aux_sym_anonymous_function_use_clause_repeat1, + [52097] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1285), 1, - aux_sym_else_clause_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3200), 1, + anon_sym_EQ_GT, STATE(1590), 1, sym_text_interpolation, - ACTIONS(1283), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51935] = 5, + STATE(1987), 1, + sym__return_type, + [52116] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3138), 1, - anon_sym_EQ, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3202), 1, + anon_sym_EQ_GT, STATE(1591), 1, sym_text_interpolation, - ACTIONS(3136), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51952] = 5, + STATE(2025), 1, + sym__return_type, + [52135] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3142), 1, - aux_sym_else_clause_token1, + ACTIONS(2872), 1, + anon_sym_COMMA, + ACTIONS(3204), 1, + anon_sym_RBRACK, STATE(1592), 1, sym_text_interpolation, - ACTIONS(3140), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [51969] = 5, + STATE(1682), 1, + aux_sym__array_destructing_repeat1, + [52154] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1289), 1, + ACTIONS(1210), 1, aux_sym_else_clause_token1, STATE(1593), 1, sym_text_interpolation, - ACTIONS(1287), 2, + ACTIONS(1208), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [51986] = 6, + [52171] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3144), 1, - anon_sym_AMP, - STATE(1257), 1, - sym_formal_parameters, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + sym_name, STATE(1594), 1, sym_text_interpolation, - [52005] = 5, + STATE(1912), 1, + sym_namespace_use_group, + [52190] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1210), 1, aux_sym_else_clause_token1, STATE(1595), 1, sym_text_interpolation, - ACTIONS(1291), 2, + ACTIONS(1208), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52022] = 5, + [52207] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3148), 1, - anon_sym_EQ, STATE(1596), 1, sym_text_interpolation, - ACTIONS(3146), 2, + ACTIONS(2953), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - [52039] = 6, + [52222] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_RBRACK, - ACTIONS(3150), 1, - anon_sym_COMMA, - STATE(1494), 1, - aux_sym_array_creation_expression_repeat1, + ACTIONS(1298), 1, + aux_sym_else_clause_token1, STATE(1597), 1, sym_text_interpolation, - [52058] = 5, + ACTIONS(1296), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52239] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1218), 1, aux_sym_else_clause_token1, STATE(1598), 1, sym_text_interpolation, - ACTIONS(1291), 2, + ACTIONS(1216), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52075] = 5, + [52256] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1297), 1, + ACTIONS(1218), 1, aux_sym_else_clause_token1, STATE(1599), 1, sym_text_interpolation, - ACTIONS(1295), 2, + ACTIONS(1216), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52092] = 5, + [52273] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1233), 1, - aux_sym_else_clause_token1, + ACTIONS(3164), 1, + sym_name, + ACTIONS(3166), 1, + anon_sym_LBRACE, STATE(1600), 1, sym_text_interpolation, - ACTIONS(1231), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52109] = 5, + STATE(1912), 1, + sym_namespace_use_group, + [52292] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1237), 1, - aux_sym_else_clause_token1, STATE(1601), 1, sym_text_interpolation, - ACTIONS(1235), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52126] = 5, + ACTIONS(3208), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [52307] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1081), 1, - aux_sym_else_clause_token1, + ACTIONS(2872), 1, + anon_sym_COMMA, + ACTIONS(3210), 1, + anon_sym_RBRACK, STATE(1602), 1, sym_text_interpolation, - ACTIONS(1079), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52143] = 5, + STATE(1682), 1, + aux_sym__array_destructing_repeat1, + [52326] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1241), 1, - aux_sym_else_clause_token1, STATE(1603), 1, sym_text_interpolation, - ACTIONS(1239), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52160] = 6, + ACTIONS(2942), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [52341] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2613), 1, - anon_sym_COMMA, - ACTIONS(2628), 1, - anon_sym_LBRACE, - STATE(1530), 1, - aux_sym_base_clause_repeat1, + ACTIONS(1230), 1, + aux_sym_else_clause_token1, STATE(1604), 1, sym_text_interpolation, - [52179] = 5, + ACTIONS(1228), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52358] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1301), 1, + ACTIONS(1234), 1, aux_sym_else_clause_token1, STATE(1605), 1, sym_text_interpolation, - ACTIONS(1299), 2, + ACTIONS(1232), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52196] = 5, + [52375] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1305), 1, + ACTIONS(1226), 1, aux_sym_else_clause_token1, STATE(1606), 1, sym_text_interpolation, - ACTIONS(1303), 2, + ACTIONS(1224), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52213] = 5, + [52392] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1249), 1, + ACTIONS(1214), 1, aux_sym_else_clause_token1, STATE(1607), 1, sym_text_interpolation, - ACTIONS(1247), 2, + ACTIONS(1212), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52230] = 6, + [52409] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(714), 1, - anon_sym_RPAREN, - ACTIONS(3152), 1, - anon_sym_COMMA, - STATE(1537), 1, - aux_sym_array_creation_expression_repeat1, + ACTIONS(3214), 1, + anon_sym_EQ, STATE(1608), 1, sym_text_interpolation, - [52249] = 6, + ACTIONS(3212), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52426] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2776), 1, - anon_sym_BSLASH, - ACTIONS(3154), 1, - sym_name, + ACTIONS(1150), 1, + aux_sym_else_clause_token1, STATE(1609), 1, sym_text_interpolation, - STATE(1952), 1, - sym_namespace_name, - [52268] = 6, + ACTIONS(1148), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52443] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3156), 1, - anon_sym_RPAREN, STATE(1610), 1, sym_text_interpolation, - STATE(1617), 1, - aux_sym_arguments_repeat1, - [52287] = 6, + ACTIONS(3216), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52458] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3158), 1, - anon_sym_LBRACE, - ACTIONS(3160), 1, - anon_sym_COLON, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3218), 1, + anon_sym_AMP, + STATE(1268), 1, + sym_formal_parameters, STATE(1611), 1, sym_text_interpolation, - STATE(1623), 1, - sym_switch_block, - [52306] = 6, + [52477] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_COMMA, - ACTIONS(3162), 1, - anon_sym_RPAREN, - STATE(1496), 1, - aux_sym_unset_statement_repeat1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3220), 1, + anon_sym_EQ_GT, STATE(1612), 1, sym_text_interpolation, - [52325] = 5, + STATE(2026), 1, + sym__return_type, + [52496] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1309), 1, - aux_sym_else_clause_token1, STATE(1613), 1, sym_text_interpolation, - ACTIONS(1307), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52342] = 5, + ACTIONS(3222), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52511] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(1234), 1, aux_sym_else_clause_token1, STATE(1614), 1, sym_text_interpolation, - ACTIONS(1311), 2, + ACTIONS(1232), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52359] = 5, + [52528] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1189), 1, - aux_sym_else_clause_token1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3224), 1, + anon_sym_RPAREN, STATE(1615), 1, sym_text_interpolation, - ACTIONS(1187), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52376] = 5, + STATE(1622), 1, + aux_sym_arguments_repeat1, + [52547] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1025), 1, - aux_sym_else_clause_token1, STATE(1616), 1, sym_text_interpolation, - ACTIONS(1023), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52393] = 6, + ACTIONS(3226), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52562] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3164), 1, - anon_sym_RPAREN, - STATE(1529), 1, - aux_sym_arguments_repeat1, + ACTIONS(1258), 1, + aux_sym_else_clause_token1, STATE(1617), 1, sym_text_interpolation, - [52412] = 5, + ACTIONS(1256), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52579] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1041), 1, - aux_sym_else_clause_token1, STATE(1618), 1, sym_text_interpolation, - ACTIONS(1039), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52429] = 5, + ACTIONS(2929), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + [52594] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1021), 1, + ACTIONS(1174), 1, aux_sym_else_clause_token1, STATE(1619), 1, sym_text_interpolation, - ACTIONS(1019), 2, + ACTIONS(1172), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52446] = 5, + [52611] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1017), 1, + ACTIONS(1062), 1, aux_sym_else_clause_token1, STATE(1620), 1, sym_text_interpolation, - ACTIONS(1015), 2, + ACTIONS(1060), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52463] = 5, + [52628] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1253), 1, + ACTIONS(1098), 1, aux_sym_else_clause_token1, STATE(1621), 1, sym_text_interpolation, - ACTIONS(1251), 2, + ACTIONS(1096), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52480] = 5, + [52645] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1045), 1, - aux_sym_else_clause_token1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3228), 1, + anon_sym_RPAREN, + STATE(1560), 1, + aux_sym_arguments_repeat1, STATE(1622), 1, sym_text_interpolation, - ACTIONS(1043), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52497] = 5, + [52664] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1265), 1, + ACTIONS(1262), 1, aux_sym_else_clause_token1, STATE(1623), 1, sym_text_interpolation, - ACTIONS(1263), 2, + ACTIONS(1260), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52514] = 5, + [52681] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1053), 1, + ACTIONS(1126), 1, aux_sym_else_clause_token1, STATE(1624), 1, sym_text_interpolation, - ACTIONS(1051), 2, + ACTIONS(1124), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52531] = 5, + [52698] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1053), 1, - aux_sym_else_clause_token1, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(2776), 1, + anon_sym_LBRACE, STATE(1625), 1, sym_text_interpolation, - ACTIONS(1051), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52548] = 5, + STATE(1958), 1, + sym__return_type, + [52717] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1065), 1, - aux_sym_else_clause_token1, STATE(1626), 1, sym_text_interpolation, - ACTIONS(1063), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52565] = 5, + ACTIONS(3230), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52732] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3166), 1, - anon_sym_COMMA, - ACTIONS(3169), 1, - anon_sym_RBRACE, - STATE(1627), 2, + ACTIONS(1266), 1, + aux_sym_else_clause_token1, + STATE(1627), 1, sym_text_interpolation, - aux_sym_match_block_repeat1, - [52582] = 6, + ACTIONS(1264), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52749] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3171), 1, - anon_sym_EQ_GT, + ACTIONS(1274), 1, + aux_sym_else_clause_token1, STATE(1628), 1, sym_text_interpolation, - STATE(2026), 1, - sym__return_type, - [52601] = 5, + ACTIONS(1272), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52766] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2001), 1, - anon_sym_EQ_GT, - ACTIONS(3173), 1, + ACTIONS(755), 1, anon_sym_COMMA, - STATE(1629), 2, + ACTIONS(3232), 1, + anon_sym_RPAREN, + STATE(1553), 1, + aux_sym__list_destructing_repeat1, + STATE(1629), 1, sym_text_interpolation, - aux_sym_match_condition_list_repeat1, - [52618] = 5, + [52785] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1029), 1, + ACTIONS(1278), 1, aux_sym_else_clause_token1, STATE(1630), 1, sym_text_interpolation, - ACTIONS(1027), 2, + ACTIONS(1276), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [52635] = 5, + [52802] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3178), 1, - anon_sym_EQ, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(3234), 1, + anon_sym_EQ_GT, STATE(1631), 1, sym_text_interpolation, - ACTIONS(3176), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52652] = 6, + STATE(2047), 1, + sym__return_type, + [52821] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, + ACTIONS(2560), 1, anon_sym_COLON, - ACTIONS(2807), 1, + ACTIONS(2782), 1, anon_sym_LBRACE, STATE(1632), 1, sym_text_interpolation, - STATE(2102), 1, + STATE(2008), 1, sym__return_type, - [52671] = 5, + [52840] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3238), 1, anon_sym_EQ, STATE(1633), 1, sym_text_interpolation, - ACTIONS(3180), 2, + ACTIONS(3236), 2, anon_sym_COMMA, anon_sym_RPAREN, - [52688] = 6, + [52857] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3184), 1, - anon_sym_AMP, - STATE(1288), 1, - sym_formal_parameters, + ACTIONS(1278), 1, + aux_sym_else_clause_token1, STATE(1634), 1, sym_text_interpolation, - [52707] = 5, + ACTIONS(1276), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52874] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1073), 1, - aux_sym_else_clause_token1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3240), 1, + anon_sym_RPAREN, + STATE(1560), 1, + aux_sym_arguments_repeat1, STATE(1635), 1, sym_text_interpolation, - ACTIONS(1071), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52724] = 6, + [52893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3186), 1, - anon_sym_AMP, + ACTIONS(3244), 1, + anon_sym_EQ, STATE(1636), 1, sym_text_interpolation, - STATE(1648), 1, - sym_formal_parameters, - [52743] = 6, + ACTIONS(3242), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52910] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(3188), 1, - anon_sym_DOT_DOT_DOT, - STATE(1591), 1, - sym_variable_name, + ACTIONS(3248), 1, + anon_sym_EQ, STATE(1637), 1, sym_text_interpolation, - [52762] = 4, + ACTIONS(3246), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52927] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1581), 1, + anon_sym_RPAREN, + ACTIONS(3250), 1, + anon_sym_COMMA, + STATE(1549), 1, + aux_sym_formal_parameters_repeat1, STATE(1638), 1, sym_text_interpolation, - ACTIONS(2925), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [52777] = 6, + [52946] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3190), 1, - anon_sym_AMP, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(3252), 1, + anon_sym_DOT_DOT_DOT, + STATE(1545), 1, + sym_variable_name, STATE(1639), 1, sym_text_interpolation, - STATE(1651), 1, - sym_formal_parameters, - [52796] = 4, + [52965] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1640), 1, sym_text_interpolation, - ACTIONS(3192), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [52811] = 6, + ACTIONS(3254), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52980] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3194), 1, - anon_sym_EQ_GT, STATE(1641), 1, sym_text_interpolation, - STATE(1985), 1, - sym__return_type, - [52830] = 5, + ACTIONS(3256), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52995] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3198), 1, - aux_sym_else_clause_token1, + ACTIONS(2019), 1, + anon_sym_COMMA, + ACTIONS(3258), 1, + anon_sym_EQ_GT, + STATE(1547), 1, + aux_sym_match_condition_list_repeat1, STATE(1642), 1, sym_text_interpolation, - ACTIONS(3196), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [52847] = 5, + [53014] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1161), 1, - aux_sym_else_clause_token1, + ACTIONS(3262), 1, + anon_sym_EQ, STATE(1643), 1, sym_text_interpolation, - ACTIONS(1159), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [52864] = 6, + ACTIONS(3260), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53031] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3200), 1, - anon_sym_AMP, - STATE(1300), 1, - sym_formal_parameters, + ACTIONS(1270), 1, + aux_sym_else_clause_token1, STATE(1644), 1, sym_text_interpolation, - [52883] = 6, + ACTIONS(1268), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53048] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(3202), 1, - anon_sym_RPAREN, + ACTIONS(1254), 1, + aux_sym_else_clause_token1, STATE(1645), 1, sym_text_interpolation, - STATE(1696), 1, - aux_sym__list_destructing_repeat1, - [52902] = 6, + ACTIONS(1252), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53065] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3204), 1, - anon_sym_EQ_GT, + ACTIONS(1250), 1, + aux_sym_else_clause_token1, STATE(1646), 1, sym_text_interpolation, - STATE(2045), 1, - sym__return_type, - [52921] = 6, + ACTIONS(1248), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53082] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3206), 1, - anon_sym_RPAREN, + ACTIONS(1246), 1, + aux_sym_else_clause_token1, STATE(1647), 1, sym_text_interpolation, - STATE(1652), 1, - aux_sym_arguments_repeat1, - [52940] = 6, + ACTIONS(1244), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53099] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3208), 1, - anon_sym_EQ_GT, + ACTIONS(1242), 1, + aux_sym_else_clause_token1, STATE(1648), 1, sym_text_interpolation, - STATE(1991), 1, - sym__return_type, - [52959] = 4, + ACTIONS(1240), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53116] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1238), 1, + aux_sym_else_clause_token1, STATE(1649), 1, sym_text_interpolation, - ACTIONS(2914), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [52974] = 6, + ACTIONS(1236), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53133] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3210), 1, - anon_sym_COMMA, - ACTIONS(3212), 1, - anon_sym_RBRACE, - STATE(1512), 1, - aux_sym_match_block_repeat1, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(3264), 1, + anon_sym_DOT_DOT_DOT, + STATE(1608), 1, + sym_variable_name, STATE(1650), 1, sym_text_interpolation, - [52993] = 6, + [53152] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3214), 1, - anon_sym_EQ_GT, + ACTIONS(1222), 1, + aux_sym_else_clause_token1, STATE(1651), 1, sym_text_interpolation, - STATE(1993), 1, - sym__return_type, - [53012] = 6, + ACTIONS(1220), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53169] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(3266), 1, anon_sym_RPAREN, - STATE(1529), 1, - aux_sym_arguments_repeat1, STATE(1652), 1, sym_text_interpolation, - [53031] = 4, + STATE(1657), 1, + aux_sym_arguments_repeat1, + [53188] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1653), 1, - sym_text_interpolation, - ACTIONS(3218), 3, + ACTIONS(3268), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [53046] = 4, + ACTIONS(3271), 1, + anon_sym_RBRACK, + STATE(1653), 2, + sym_text_interpolation, + aux_sym_attribute_list_repeat1, + [53205] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(3273), 1, + anon_sym_COMMA, + STATE(1546), 1, + aux_sym_match_block_repeat1, STATE(1654), 1, sym_text_interpolation, - ACTIONS(3220), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [53061] = 6, + [53224] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(3222), 1, - anon_sym_RPAREN, + ACTIONS(3277), 1, + anon_sym_EQ, STATE(1655), 1, sym_text_interpolation, - STATE(1696), 1, - aux_sym__list_destructing_repeat1, - [53080] = 4, + ACTIONS(3275), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53241] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1656), 1, - sym_text_interpolation, - ACTIONS(3224), 3, + ACTIONS(3094), 1, + anon_sym_RBRACK, + ACTIONS(3279), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [53095] = 6, + STATE(1656), 2, + sym_text_interpolation, + aux_sym_array_creation_expression_repeat1, + [53258] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3226), 1, + ACTIONS(3282), 1, anon_sym_RPAREN, + STATE(1560), 1, + aux_sym_arguments_repeat1, STATE(1657), 1, sym_text_interpolation, - STATE(1696), 1, - aux_sym__list_destructing_repeat1, - [53114] = 5, + [53277] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1209), 1, + ACTIONS(1186), 1, aux_sym_else_clause_token1, STATE(1658), 1, sym_text_interpolation, - ACTIONS(1207), 2, + ACTIONS(1184), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [53131] = 5, + [53294] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3230), 1, - anon_sym_EQ, + ACTIONS(1182), 1, + aux_sym_else_clause_token1, STATE(1659), 1, sym_text_interpolation, - ACTIONS(3228), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53148] = 6, + ACTIONS(1180), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53311] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(3232), 1, - anon_sym_DOT_DOT_DOT, - STATE(1559), 1, - sym_variable_name, + ACTIONS(1282), 1, + aux_sym_else_clause_token1, STATE(1660), 1, sym_text_interpolation, - [53167] = 6, + ACTIONS(1280), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53328] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3234), 1, - anon_sym_COMMA, - ACTIONS(3236), 1, - anon_sym_RPAREN, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(2909), 1, + anon_sym_AMP, STATE(1661), 1, sym_text_interpolation, - STATE(1706), 1, - aux_sym_formal_parameters_repeat1, - [53186] = 4, + STATE(1870), 1, + sym_variable_name, + [53347] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1018), 1, + aux_sym_else_clause_token1, STATE(1662), 1, sym_text_interpolation, - ACTIONS(2243), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - sym_name, - [53201] = 5, + ACTIONS(1016), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53364] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(286), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - ACTIONS(1129), 1, - aux_sym_else_clause_token1, STATE(1663), 1, sym_text_interpolation, - ACTIONS(1127), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [53218] = 5, + STATE(1452), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53381] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3240), 1, - anon_sym_EQ, - STATE(1664), 1, - sym_text_interpolation, - ACTIONS(3238), 2, + ACTIONS(3284), 1, anon_sym_COMMA, + ACTIONS(3286), 1, anon_sym_RPAREN, - [53235] = 6, + STATE(1638), 1, + aux_sym_formal_parameters_repeat1, + STATE(1664), 1, + sym_text_interpolation, + [53400] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3242), 1, - anon_sym_RPAREN, + ACTIONS(3288), 1, + anon_sym_LBRACE, + ACTIONS(3290), 1, + anon_sym_COLON, + STATE(505), 1, + sym_switch_block, STATE(1665), 1, sym_text_interpolation, - STATE(1666), 1, - aux_sym_arguments_repeat1, - [53254] = 6, + [53419] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3244), 1, - anon_sym_RPAREN, - STATE(1529), 1, - aux_sym_arguments_repeat1, STATE(1666), 1, sym_text_interpolation, - [53273] = 6, + ACTIONS(2834), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [53434] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3104), 1, - anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_RBRACE, - STATE(1552), 1, - aux_sym_namespace_use_group_repeat1, STATE(1667), 1, sym_text_interpolation, - [53292] = 6, + ACTIONS(3292), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [53449] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3248), 1, - sym_name, - ACTIONS(3250), 1, - anon_sym_LBRACE, + ACTIONS(1282), 1, + aux_sym_else_clause_token1, STATE(1668), 1, sym_text_interpolation, - STATE(1838), 1, - sym_namespace_use_group, - [53311] = 6, + ACTIONS(1280), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53466] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - sym_name, + ACTIONS(1286), 1, + aux_sym_else_clause_token1, STATE(1669), 1, sym_text_interpolation, - STATE(1860), 1, - sym_namespace_use_group, - [53330] = 5, + ACTIONS(1284), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53483] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3257), 1, - anon_sym_RBRACE, - STATE(1670), 2, + ACTIONS(3294), 1, + anon_sym_RPAREN, + STATE(1670), 1, sym_text_interpolation, - aux_sym_namespace_use_group_repeat1, - [53347] = 5, + STATE(1671), 1, + aux_sym_arguments_repeat1, + [53502] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1009), 1, - aux_sym_else_clause_token1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3296), 1, + anon_sym_RPAREN, + STATE(1560), 1, + aux_sym_arguments_repeat1, STATE(1671), 1, sym_text_interpolation, - ACTIONS(1007), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [53364] = 6, + [53521] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2896), 1, - anon_sym_RPAREN, - ACTIONS(3259), 1, - anon_sym_COMMA, + ACTIONS(1290), 1, + aux_sym_else_clause_token1, STATE(1672), 1, sym_text_interpolation, - STATE(1676), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [53383] = 5, + ACTIONS(1288), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53538] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2861), 1, - anon_sym_EQ, + ACTIONS(1146), 1, + aux_sym_else_clause_token1, STATE(1673), 1, sym_text_interpolation, - ACTIONS(3261), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53400] = 6, + ACTIONS(1144), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53555] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3263), 1, - anon_sym_RPAREN, + ACTIONS(1138), 1, + aux_sym_else_clause_token1, STATE(1674), 1, sym_text_interpolation, - STATE(1675), 1, - aux_sym_arguments_repeat1, - [53419] = 6, + ACTIONS(1136), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53572] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3265), 1, - anon_sym_RPAREN, - STATE(1529), 1, - aux_sym_arguments_repeat1, + ACTIONS(1294), 1, + aux_sym_else_clause_token1, STATE(1675), 1, sym_text_interpolation, - [53438] = 5, + ACTIONS(1292), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53589] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3267), 1, - anon_sym_COMMA, - ACTIONS(3270), 1, - anon_sym_RPAREN, - STATE(1676), 2, + ACTIONS(1134), 1, + aux_sym_else_clause_token1, + STATE(1676), 1, sym_text_interpolation, - aux_sym_anonymous_function_use_clause_repeat1, - [53455] = 5, + ACTIONS(1132), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53606] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1321), 1, + ACTIONS(1130), 1, aux_sym_else_clause_token1, STATE(1677), 1, sym_text_interpolation, - ACTIONS(1319), 2, + ACTIONS(1128), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [53472] = 4, + [53623] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(3298), 1, + anon_sym_AMP, + STATE(1537), 1, + sym_variable_name, STATE(1678), 1, sym_text_interpolation, - ACTIONS(3272), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [53487] = 6, + [53642] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3274), 1, - anon_sym_LBRACE, - ACTIONS(3276), 1, - anon_sym_COLON, - STATE(505), 1, - sym_switch_block, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3300), 1, + anon_sym_RPAREN, STATE(1679), 1, sym_text_interpolation, - [53506] = 6, + STATE(1680), 1, + aux_sym_arguments_repeat1, + [53661] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3278), 1, + ACTIONS(3302), 1, anon_sym_RPAREN, + STATE(1560), 1, + aux_sym_arguments_repeat1, STATE(1680), 1, sym_text_interpolation, - STATE(1696), 1, - aux_sym__list_destructing_repeat1, - [53525] = 5, + [53680] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1317), 1, - aux_sym_else_clause_token1, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(3304), 1, + anon_sym_RPAREN, STATE(1681), 1, sym_text_interpolation, - ACTIONS(1315), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [53542] = 4, + STATE(1959), 1, + sym_variable_name, + [53699] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1682), 1, - sym_text_interpolation, - ACTIONS(2887), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1466), 1, + anon_sym_RBRACK, + ACTIONS(3306), 1, anon_sym_COMMA, - [53557] = 6, + STATE(1682), 2, + sym_text_interpolation, + aux_sym__array_destructing_repeat1, + [53716] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - sym_name, STATE(1683), 1, sym_text_interpolation, - STATE(1838), 1, - sym_namespace_use_group, - [53576] = 4, + ACTIONS(2886), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [53731] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(755), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, + anon_sym_RPAREN, STATE(1684), 1, sym_text_interpolation, - ACTIONS(2878), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - [53591] = 4, + STATE(1695), 1, + aux_sym__list_destructing_repeat1, + [53750] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1294), 1, + aux_sym_else_clause_token1, STATE(1685), 1, sym_text_interpolation, - ACTIONS(3280), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [53606] = 5, + ACTIONS(1292), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53767] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3282), 1, - sym_name, + ACTIONS(1302), 1, + aux_sym_else_clause_token1, STATE(1686), 1, sym_text_interpolation, - ACTIONS(3284), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53623] = 4, + ACTIONS(1300), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53784] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1106), 1, + aux_sym_else_clause_token1, STATE(1687), 1, sym_text_interpolation, - ACTIONS(2869), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [53638] = 5, + ACTIONS(1104), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53801] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1217), 1, - aux_sym_else_clause_token1, + ACTIONS(2874), 1, + anon_sym_EQ, STATE(1688), 1, sym_text_interpolation, - ACTIONS(1215), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [53655] = 5, + ACTIONS(3309), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53818] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1102), 1, + aux_sym_else_clause_token1, STATE(1689), 1, sym_text_interpolation, - STATE(1415), 2, - sym_dynamic_variable_name, - sym_variable_name, - [53672] = 5, + ACTIONS(1100), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53835] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1201), 1, + ACTIONS(1086), 1, aux_sym_else_clause_token1, STATE(1690), 1, sym_text_interpolation, - ACTIONS(1199), 2, + ACTIONS(1084), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [53689] = 6, + [53852] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(2814), 1, - anon_sym_LBRACE, + ACTIONS(1306), 1, + aux_sym_else_clause_token1, STATE(1691), 1, sym_text_interpolation, - STATE(2013), 1, - sym__return_type, - [53708] = 5, + ACTIONS(1304), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53869] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1141), 1, - aux_sym_else_clause_token1, + ACTIONS(2632), 1, + anon_sym_COMMA, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(1475), 1, + aux_sym_base_clause_repeat1, STATE(1692), 1, sym_text_interpolation, - ACTIONS(1139), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [53725] = 4, + [53888] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2632), 1, + anon_sym_COMMA, + ACTIONS(2766), 1, + anon_sym_LBRACE, + STATE(1692), 1, + aux_sym_base_clause_repeat1, STATE(1693), 1, sym_text_interpolation, - ACTIONS(3286), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [53740] = 6, + [53907] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(286), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_COMMA, - ACTIONS(3288), 1, - anon_sym_RBRACK, STATE(1694), 1, sym_text_interpolation, - STATE(1716), 1, - aux_sym_attribute_list_repeat1, - [53759] = 6, + STATE(1420), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53924] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3290), 1, - anon_sym_AMP, - STATE(1646), 1, - sym_formal_parameters, - STATE(1695), 1, + ACTIONS(1468), 1, + anon_sym_RPAREN, + ACTIONS(3313), 1, + anon_sym_COMMA, + STATE(1695), 2, sym_text_interpolation, - [53778] = 5, + aux_sym__list_destructing_repeat1, + [53941] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1466), 1, - anon_sym_RPAREN, - ACTIONS(3292), 1, + ACTIONS(755), 1, anon_sym_COMMA, - STATE(1696), 2, - sym_text_interpolation, + ACTIONS(3316), 1, + anon_sym_RPAREN, + STATE(1695), 1, aux_sym__list_destructing_repeat1, - [53795] = 4, + STATE(1696), 1, + sym_text_interpolation, + [53960] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1697), 1, sym_text_interpolation, - ACTIONS(3295), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [53810] = 6, + ACTIONS(3318), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [53975] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_COLON, - ACTIONS(3297), 1, - anon_sym_EQ_GT, + ACTIONS(3320), 1, + sym_name, STATE(1698), 1, sym_text_interpolation, - STATE(2037), 1, - sym__return_type, - [53829] = 4, + ACTIONS(3322), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53992] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2872), 1, + anon_sym_COMMA, + ACTIONS(3324), 1, + anon_sym_RBRACK, + STATE(1682), 1, + aux_sym__array_destructing_repeat1, STATE(1699), 1, sym_text_interpolation, - ACTIONS(3299), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [53844] = 4, + [54011] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3326), 1, + anon_sym_AMP, + STATE(1612), 1, + sym_formal_parameters, STATE(1700), 1, sym_text_interpolation, - ACTIONS(3301), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [53859] = 6, + [54030] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3303), 1, + ACTIONS(719), 1, anon_sym_RPAREN, - STATE(1529), 1, - aux_sym_arguments_repeat1, + ACTIONS(3328), 1, + anon_sym_COMMA, + STATE(1534), 1, + aux_sym_array_creation_expression_repeat1, STATE(1701), 1, sym_text_interpolation, - [53878] = 6, + [54049] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_AMP, - STATE(1587), 1, - sym_formal_parameters, + ACTIONS(701), 1, + anon_sym_RBRACK, + ACTIONS(3330), 1, + anon_sym_COMMA, STATE(1702), 1, sym_text_interpolation, - [53897] = 5, + STATE(1717), 1, + aux_sym_array_creation_expression_repeat1, + [54068] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3307), 1, - anon_sym_COMMA, - ACTIONS(3310), 1, - anon_sym_RBRACK, - STATE(1703), 2, + ACTIONS(1310), 1, + aux_sym_else_clause_token1, + STATE(1703), 1, sym_text_interpolation, - aux_sym_attribute_list_repeat1, - [53914] = 6, + ACTIONS(1308), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [54085] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(2823), 1, - anon_sym_AMP, + ACTIONS(3051), 1, + anon_sym_COMMA, + ACTIONS(3332), 1, + anon_sym_RBRACK, STATE(1704), 1, sym_text_interpolation, - STATE(1826), 1, - sym_variable_name, - [53933] = 6, + STATE(1732), 1, + aux_sym_attribute_list_repeat1, + [54104] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(3312), 1, - anon_sym_DOT_DOT_DOT, - STATE(1631), 1, - sym_variable_name, STATE(1705), 1, sym_text_interpolation, - [53952] = 6, + ACTIONS(3334), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [54119] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1574), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, - anon_sym_COMMA, - STATE(1542), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2874), 1, + anon_sym_EQ, STATE(1706), 1, sym_text_interpolation, - [53971] = 6, + ACTIONS(3336), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54136] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3316), 1, - anon_sym_AMP, - STATE(1282), 1, - sym_formal_parameters, + ACTIONS(1314), 1, + aux_sym_else_clause_token1, STATE(1707), 1, sym_text_interpolation, - [53990] = 5, + ACTIONS(1312), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [54153] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_else_clause_token1, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3338), 1, + anon_sym_AMP, + STATE(1591), 1, + sym_formal_parameters, STATE(1708), 1, sym_text_interpolation, - ACTIONS(1083), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [54007] = 6, + [54172] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3033), 1, + ACTIONS(2388), 1, anon_sym_COMMA, - ACTIONS(3318), 1, + ACTIONS(3340), 1, anon_sym_RPAREN, - STATE(1701), 1, - aux_sym_arguments_repeat1, STATE(1709), 1, sym_text_interpolation, - [54026] = 5, + STATE(1723), 1, + aux_sym_unset_statement_repeat1, + [54191] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1033), 1, - aux_sym_else_clause_token1, + ACTIONS(2872), 1, + anon_sym_COMMA, + ACTIONS(3342), 1, + anon_sym_RBRACK, + STATE(1682), 1, + aux_sym__array_destructing_repeat1, STATE(1710), 1, sym_text_interpolation, - ACTIONS(1031), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [54043] = 5, + [54210] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2861), 1, - anon_sym_EQ, + ACTIONS(1046), 1, + aux_sym_else_clause_token1, STATE(1711), 1, sym_text_interpolation, - ACTIONS(3320), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54060] = 6, + ACTIONS(1044), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [54227] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1548), 1, - anon_sym_DOLLAR, - STATE(1376), 1, - sym_variable_name, - STATE(1638), 1, - sym_static_variable_declaration, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3344), 1, + anon_sym_AMP, + STATE(1265), 1, + sym_formal_parameters, STATE(1712), 1, sym_text_interpolation, - [54079] = 5, + [54246] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(1038), 1, aux_sym_else_clause_token1, STATE(1713), 1, sym_text_interpolation, - ACTIONS(1035), 2, + ACTIONS(1036), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [54096] = 6, + [54263] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(3322), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(1122), 1, + aux_sym_else_clause_token1, STATE(1714), 1, sym_text_interpolation, - STATE(1722), 1, - sym_variable_name, - [54115] = 5, + ACTIONS(1120), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [54280] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(281), 1, - anon_sym_DOLLAR, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1030), 1, + aux_sym_else_clause_token1, STATE(1715), 1, sym_text_interpolation, - STATE(1649), 2, - sym_dynamic_variable_name, - sym_variable_name, - [54132] = 6, + ACTIONS(1028), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [54297] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_COMMA, - ACTIONS(3324), 1, - anon_sym_RBRACK, - STATE(1703), 1, - aux_sym_attribute_list_repeat1, STATE(1716), 1, sym_text_interpolation, - [54151] = 6, + ACTIONS(2266), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + sym_name, + [54312] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(3326), 1, - anon_sym_AMP, - STATE(1527), 1, - sym_formal_parameters, + ACTIONS(725), 1, + anon_sym_RBRACK, + ACTIONS(3346), 1, + anon_sym_COMMA, + STATE(1656), 1, + aux_sym_array_creation_expression_repeat1, STATE(1717), 1, sym_text_interpolation, - [54170] = 6, + [54331] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(1439), 1, - anon_sym_RPAREN, - STATE(1696), 1, - aux_sym__list_destructing_repeat1, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(3348), 1, + anon_sym_DOT_DOT_DOT, + STATE(1633), 1, + sym_variable_name, STATE(1718), 1, sym_text_interpolation, - [54189] = 6, + [54350] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - ACTIONS(3328), 1, - anon_sym_RPAREN, + ACTIONS(1318), 1, + aux_sym_else_clause_token1, STATE(1719), 1, sym_text_interpolation, - STATE(2062), 1, - sym_variable_name, - [54208] = 6, + ACTIONS(1316), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [54367] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - sym_name, + ACTIONS(3350), 1, + anon_sym_COMMA, + ACTIONS(3352), 1, + anon_sym_RBRACE, + STATE(1654), 1, + aux_sym_match_block_repeat1, STATE(1720), 1, sym_text_interpolation, - STATE(1888), 1, - sym_namespace_use_group, - [54227] = 6, + [54386] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3248), 1, - sym_name, - ACTIONS(3250), 1, - anon_sym_LBRACE, + ACTIONS(1549), 1, + anon_sym_DOLLAR, + STATE(1382), 1, + sym_variable_name, + STATE(1578), 1, + sym_static_variable_declaration, STATE(1721), 1, sym_text_interpolation, - STATE(1810), 1, - sym_namespace_use_group, - [54246] = 5, + [54405] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3332), 1, - anon_sym_EQ, + ACTIONS(2522), 1, + anon_sym_LPAREN, + ACTIONS(3354), 1, + anon_sym_AMP, + STATE(1533), 1, + sym_formal_parameters, STATE(1722), 1, sym_text_interpolation, - ACTIONS(3330), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54263] = 6, + [54424] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3248), 1, - sym_name, - ACTIONS(3250), 1, - anon_sym_LBRACE, - STATE(1723), 1, + ACTIONS(2494), 1, + anon_sym_RPAREN, + ACTIONS(3356), 1, + anon_sym_COMMA, + STATE(1723), 2, sym_text_interpolation, - STATE(1744), 1, - sym_namespace_use_group, - [54282] = 5, + aux_sym_unset_statement_repeat1, + [54441] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3093), 1, - anon_sym_RBRACK, - ACTIONS(3334), 1, - anon_sym_COMMA, - STATE(1724), 2, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + sym_name, + STATE(1724), 1, sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [54299] = 5, + STATE(1855), 1, + sym_namespace_use_group, + [54460] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(286), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, sym_comment, - ACTIONS(1457), 1, - anon_sym_RBRACK, - ACTIONS(3337), 1, - anon_sym_COMMA, - STATE(1725), 2, + STATE(1725), 1, sym_text_interpolation, - aux_sym__array_destructing_repeat1, - [54316] = 5, + STATE(1580), 2, + sym_dynamic_variable_name, + sym_variable_name, + [54477] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1121), 1, + ACTIONS(1118), 1, aux_sym_else_clause_token1, STATE(1726), 1, sym_text_interpolation, - ACTIONS(1119), 2, + ACTIONS(1116), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [54333] = 6, + [54494] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(708), 1, - anon_sym_RBRACK, - ACTIONS(3340), 1, - anon_sym_COMMA, - STATE(1724), 1, - aux_sym_array_creation_expression_repeat1, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + ACTIONS(3359), 1, + anon_sym_RPAREN, STATE(1727), 1, sym_text_interpolation, - [54352] = 4, + STATE(2068), 1, + sym_variable_name, + [54513] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + sym_name, STATE(1728), 1, sym_text_interpolation, - ACTIONS(3342), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [54367] = 6, + STATE(1857), 1, + sym_namespace_use_group, + [54532] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2375), 1, - anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_RPAREN, - STATE(1496), 1, - aux_sym_unset_statement_repeat1, STATE(1729), 1, sym_text_interpolation, - [54386] = 6, + ACTIONS(3094), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54547] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(3346), 1, - anon_sym_RBRACK, - STATE(1725), 1, - aux_sym__array_destructing_repeat1, + ACTIONS(1066), 1, + aux_sym_else_clause_token1, STATE(1730), 1, sym_text_interpolation, - [54405] = 4, + ACTIONS(1064), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [54564] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1731), 1, sym_text_interpolation, - ACTIONS(3093), 3, + ACTIONS(3361), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [54420] = 6, + [54579] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - sym_name, + ACTIONS(3051), 1, + anon_sym_COMMA, + ACTIONS(3363), 1, + anon_sym_RBRACK, + STATE(1653), 1, + aux_sym_attribute_list_repeat1, STATE(1732), 1, sym_text_interpolation, - STATE(1819), 1, - sym_namespace_use_group, - [54439] = 6, + [54598] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(3348), 1, - anon_sym_RBRACK, - STATE(1725), 1, - aux_sym__array_destructing_repeat1, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + sym_name, STATE(1733), 1, sym_text_interpolation, - [54458] = 6, + STATE(1911), 1, + sym_namespace_use_group, + [54617] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3248), 1, + ACTIONS(3164), 1, sym_name, - ACTIONS(3250), 1, + ACTIONS(3166), 1, anon_sym_LBRACE, STATE(1734), 1, sym_text_interpolation, - STATE(1819), 1, + STATE(1911), 1, sym_namespace_use_group, - [54477] = 5, + [54636] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_COMMA, + ACTIONS(3365), 1, + anon_sym_RPAREN, + STATE(1723), 1, + aux_sym_unset_statement_repeat1, STATE(1735), 1, sym_text_interpolation, - STATE(1815), 1, - sym_parenthesized_expression, - [54493] = 5, + [54655] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(29), 1, - sym_parenthesized_expression, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3367), 1, + anon_sym_RPAREN, + STATE(1635), 1, + aux_sym_arguments_repeat1, STATE(1736), 1, sym_text_interpolation, - [54509] = 5, + [54674] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2938), 1, - anon_sym_LBRACE, - STATE(486), 1, - sym_declaration_list, + ACTIONS(1162), 1, + aux_sym_else_clause_token1, STATE(1737), 1, sym_text_interpolation, - [54525] = 5, + ACTIONS(1160), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [54691] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(472), 1, - ts_builtin_sym_end, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3354), 1, - sym_php_tag, + ACTIONS(3164), 1, + sym_name, + ACTIONS(3166), 1, + anon_sym_LBRACE, STATE(1738), 1, sym_text_interpolation, - [54541] = 5, + STATE(1929), 1, + sym_namespace_use_group, + [54710] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(776), 1, - sym_compound_statement, + ACTIONS(3371), 1, + aux_sym_else_clause_token1, STATE(1739), 1, sym_text_interpolation, - [54557] = 4, + ACTIONS(3369), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [54727] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1740), 1, sym_text_interpolation, - ACTIONS(428), 2, + ACTIONS(3373), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54571] = 5, + [54741] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - STATE(1664), 1, - sym_variable_name, STATE(1741), 1, sym_text_interpolation, - [54587] = 5, + ACTIONS(3375), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54755] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_LPAREN, STATE(1742), 1, sym_text_interpolation, - STATE(1763), 1, - sym_parenthesized_expression, - [54603] = 4, + ACTIONS(3377), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54769] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_parenthesized_expression, STATE(1743), 1, sym_text_interpolation, - ACTIONS(3356), 2, - sym__eof, - sym_php_tag, - [54617] = 4, + [54785] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(517), 1, + ts_builtin_sym_end, + ACTIONS(595), 1, sym_comment, + ACTIONS(3381), 1, + sym_php_tag, STATE(1744), 1, sym_text_interpolation, - ACTIONS(3014), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54631] = 5, + [54801] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(780), 1, - sym_compound_statement, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(36), 1, + sym_parenthesized_expression, STATE(1745), 1, sym_text_interpolation, - [54647] = 5, + [54817] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1328), 1, - sym_declaration_list, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(85), 1, + sym_parenthesized_expression, STATE(1746), 1, sym_text_interpolation, - [54663] = 5, + [54833] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3358), 1, - sym_name, STATE(1747), 1, sym_text_interpolation, - STATE(2010), 1, - sym_namespace_name, - [54679] = 5, + ACTIONS(3383), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54847] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3358), 1, - sym_name, + ACTIONS(3385), 1, + anon_sym_LPAREN, STATE(1748), 1, sym_text_interpolation, - STATE(2014), 1, - sym_namespace_name, - [54695] = 4, + STATE(1880), 1, + sym_parenthesized_expression, + [54863] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1749), 1, sym_text_interpolation, - ACTIONS(3361), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54709] = 4, + ACTIONS(3387), 2, + sym__eof, + sym_php_tag, + [54877] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1475), 1, + anon_sym_BSLASH, STATE(1750), 1, sym_text_interpolation, - ACTIONS(3310), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54723] = 5, + STATE(1793), 1, + aux_sym_namespace_name_repeat1, + [54893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3358), 1, + ACTIONS(3389), 1, sym_name, STATE(1751), 1, sym_text_interpolation, - STATE(2007), 1, + STATE(1982), 1, sym_namespace_name, - [54739] = 5, + [54909] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1260), 1, - sym_formal_parameters, + STATE(1689), 1, + sym_compound_statement, STATE(1752), 1, sym_text_interpolation, - [54755] = 4, + [54925] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3389), 1, + sym_name, STATE(1753), 1, sym_text_interpolation, - ACTIONS(3363), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54769] = 5, + STATE(2019), 1, + sym_namespace_name, + [54941] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, + ACTIONS(3392), 1, + anon_sym_LPAREN, STATE(1754), 1, sym_text_interpolation, - STATE(1845), 1, - sym_variable_name, - [54785] = 5, + STATE(1759), 1, + sym_parenthesized_expression, + [54957] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3358), 1, - sym_name, STATE(1755), 1, sym_text_interpolation, - STATE(1952), 1, - sym_namespace_name, - [54801] = 5, + ACTIONS(3394), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54971] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1691), 1, - sym_formal_parameters, + ACTIONS(2085), 1, + anon_sym_RPAREN, + ACTIONS(3396), 1, + anon_sym_EQ, STATE(1756), 1, sym_text_interpolation, - [54817] = 5, + [54987] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(341), 1, + anon_sym_COLON, + ACTIONS(595), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym_RPAREN, - ACTIONS(3365), 1, - anon_sym_EQ, STATE(1757), 1, sym_text_interpolation, - [54833] = 5, + STATE(2081), 1, + sym_colon_block, + [55003] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(432), 1, - anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1592), 1, - sym_colon_block, + ACTIONS(3389), 1, + sym_name, STATE(1758), 1, sym_text_interpolation, - [54849] = 4, + STATE(2012), 1, + sym_namespace_name, + [55019] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(437), 1, + anon_sym_COLON, + ACTIONS(595), 1, sym_comment, + STATE(1544), 1, + sym_colon_block, STATE(1759), 1, sym_text_interpolation, - ACTIONS(3367), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54863] = 5, + [55035] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3369), 1, - anon_sym_SEMI, - ACTIONS(3371), 1, - sym__automatic_semicolon, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1530), 1, + sym_formal_parameters, STATE(1760), 1, sym_text_interpolation, - [54879] = 4, + [55051] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1569), 1, + anon_sym_DOLLAR, STATE(1761), 1, sym_text_interpolation, - ACTIONS(3373), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54893] = 5, + STATE(1936), 1, + sym_variable_name, + [55067] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2011), 1, - anon_sym_RPAREN, - ACTIONS(3365), 1, - anon_sym_EQ, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1260), 1, + sym_formal_parameters, STATE(1762), 1, sym_text_interpolation, - [54909] = 4, + [55083] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3389), 1, + sym_name, STATE(1763), 1, sym_text_interpolation, - ACTIONS(3375), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54923] = 5, + STATE(1963), 1, + sym_namespace_name, + [55099] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, STATE(1764), 1, sym_text_interpolation, - [54939] = 5, + ACTIONS(3398), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55113] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, + ACTIONS(3400), 1, + anon_sym_SEMI, + ACTIONS(3402), 1, + sym__automatic_semicolon, STATE(1765), 1, sym_text_interpolation, - STATE(1840), 1, - sym_variable_name, - [54955] = 5, + [55129] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(88), 1, - sym_parenthesized_expression, STATE(1766), 1, sym_text_interpolation, - [54971] = 5, + ACTIONS(3404), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55143] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_parenthesized_expression, + ACTIONS(2067), 1, + anon_sym_RPAREN, + ACTIONS(3396), 1, + anon_sym_EQ, STATE(1767), 1, sym_text_interpolation, - [54987] = 5, + [55159] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1259), 1, - sym_formal_parameters, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(947), 1, + sym_declaration_list, STATE(1768), 1, sym_text_interpolation, - [55003] = 4, + [55175] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1769), 1, sym_text_interpolation, - ACTIONS(3377), 2, - sym__automatic_semicolon, + ACTIONS(2017), 2, anon_sym_SEMI, - [55017] = 5, + anon_sym_RPAREN, + [55189] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(900), 1, - sym_declaration_list, + ACTIONS(3406), 1, + anon_sym_LPAREN, + STATE(1354), 1, + sym_formal_parameters, STATE(1770), 1, sym_text_interpolation, - [55033] = 5, + [55205] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1527), 1, - sym_formal_parameters, + ACTIONS(2524), 1, + anon_sym_LBRACE, + STATE(1659), 1, + sym_declaration_list, STATE(1771), 1, sym_text_interpolation, - [55049] = 5, + [55221] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(199), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(462), 1, - sym_compound_statement, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1298), 1, + sym_formal_parameters, STATE(1772), 1, sym_text_interpolation, - [55065] = 4, + [55237] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1773), 1, sym_text_interpolation, - ACTIONS(3379), 2, + ACTIONS(3408), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55079] = 5, + [55251] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1351), 1, - sym_compound_statement, STATE(1774), 1, sym_text_interpolation, - [55095] = 4, + ACTIONS(3410), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55265] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(202), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, + STATE(463), 1, + sym_compound_statement, STATE(1775), 1, sym_text_interpolation, - ACTIONS(2575), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55109] = 5, + [55281] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2530), 1, anon_sym_LBRACE, - STATE(759), 1, + STATE(958), 1, sym_declaration_list, STATE(1776), 1, sym_text_interpolation, - [55125] = 4, + [55297] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3412), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_match_block, STATE(1777), 1, sym_text_interpolation, - ACTIONS(3381), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55139] = 5, + [55313] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1257), 1, - sym_formal_parameters, STATE(1778), 1, sym_text_interpolation, - [55155] = 4, + ACTIONS(2047), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55327] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1779), 1, sym_text_interpolation, - ACTIONS(3383), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55169] = 4, + ACTIONS(3414), 2, + anon_sym_SEMI, + anon_sym_COLON, + [55341] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1625), 1, + sym_formal_parameters, STATE(1780), 1, sym_text_interpolation, - ACTIONS(3280), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [55183] = 4, + [55357] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1781), 1, sym_text_interpolation, - ACTIONS(3385), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [55197] = 5, + ACTIONS(3152), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55371] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2497), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - STATE(1368), 1, - sym_declaration_list, + ACTIONS(595), 1, + sym_comment, + STATE(1624), 1, + sym_compound_statement, STATE(1782), 1, sym_text_interpolation, - [55213] = 5, + [55387] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3387), 1, - anon_sym_LPAREN, - STATE(1611), 1, - sym_parenthesized_expression, + ACTIONS(2568), 1, + anon_sym_LBRACE, + STATE(426), 1, + sym_declaration_list, STATE(1783), 1, sym_text_interpolation, - [55229] = 4, + [55403] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1569), 1, + anon_sym_DOLLAR, STATE(1784), 1, sym_text_interpolation, - ACTIONS(2007), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55243] = 5, + STATE(1840), 1, + sym_variable_name, + [55419] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3387), 1, - anon_sym_LPAREN, STATE(1785), 1, sym_text_interpolation, - STATE(1909), 1, - sym_parenthesized_expression, - [55259] = 5, + ACTIONS(2638), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55433] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1361), 1, - sym_declaration_list, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1533), 1, + sym_formal_parameters, STATE(1786), 1, sym_text_interpolation, - [55275] = 4, + [55449] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + STATE(1351), 1, + sym_formal_parameters, STATE(1787), 1, sym_text_interpolation, - ACTIONS(2047), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55289] = 5, + [55465] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, STATE(1788), 1, sym_text_interpolation, - [55305] = 5, + ACTIONS(3416), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55479] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3389), 1, - anon_sym_BSLASH, - STATE(1373), 1, - aux_sym_namespace_name_repeat1, STATE(1789), 1, sym_text_interpolation, - [55321] = 4, + ACTIONS(2013), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55493] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1442), 1, + anon_sym_LPAREN, + STATE(573), 1, + sym_arguments, STATE(1790), 1, sym_text_interpolation, - ACTIONS(3078), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55335] = 5, + [55509] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1698), 1, - sym_formal_parameters, + STATE(782), 1, + sym_compound_statement, STATE(1791), 1, sym_text_interpolation, - [55351] = 5, + [55525] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2530), 1, anon_sym_LBRACE, - STATE(1690), 1, + STATE(944), 1, sym_declaration_list, STATE(1792), 1, sym_text_interpolation, - [55367] = 5, + [55541] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1312), 1, - sym_compound_statement, + ACTIONS(3418), 1, + anon_sym_BSLASH, + STATE(1375), 1, + aux_sym_namespace_name_repeat1, STATE(1793), 1, sym_text_interpolation, - [55383] = 5, + [55557] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2535), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - STATE(427), 1, + STATE(425), 1, sym_declaration_list, STATE(1794), 1, sym_text_interpolation, - [55399] = 5, + [55573] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, STATE(1795), 1, sym_text_interpolation, - STATE(1895), 1, - sym_variable_name, - [55415] = 5, + ACTIONS(3421), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55587] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(425), 1, - sym_declaration_list, + ACTIONS(3392), 1, + anon_sym_LPAREN, + STATE(1581), 1, + sym_parenthesized_expression, STATE(1796), 1, sym_text_interpolation, - [55431] = 5, + [55603] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_declaration_list, STATE(1797), 1, sym_text_interpolation, - [55447] = 5, + ACTIONS(3423), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55617] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(760), 1, - sym_compound_statement, STATE(1798), 1, sym_text_interpolation, - [55463] = 5, + ACTIONS(3425), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55631] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - STATE(588), 1, - sym_arguments, + STATE(1777), 1, + sym_parenthesized_expression, STATE(1799), 1, sym_text_interpolation, - [55479] = 5, + [55647] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_LBRACE, - STATE(782), 1, - sym_declaration_list, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(42), 1, + sym_parenthesized_expression, STATE(1800), 1, sym_text_interpolation, - [55495] = 5, + [55663] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2111), 1, - anon_sym_RPAREN, - ACTIONS(3365), 1, - anon_sym_EQ, + ACTIONS(2524), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_declaration_list, STATE(1801), 1, sym_text_interpolation, - [55511] = 5, + [55679] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(781), 1, + STATE(1341), 1, sym_compound_statement, STATE(1802), 1, sym_text_interpolation, - [55527] = 5, + [55695] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(752), 1, - sym_compound_statement, STATE(1803), 1, sym_text_interpolation, - [55543] = 4, + ACTIONS(3427), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55709] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1804), 1, sym_text_interpolation, - ACTIONS(3392), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [55557] = 5, + ACTIONS(3429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55723] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1365), 1, - sym_compound_statement, STATE(1805), 1, sym_text_interpolation, - [55573] = 5, + ACTIONS(3431), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55737] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2535), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, STATE(424), 1, sym_declaration_list, STATE(1806), 1, sym_text_interpolation, - [55589] = 5, + [55753] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(430), 1, - sym_declaration_list, STATE(1807), 1, sym_text_interpolation, - [55605] = 4, + ACTIONS(3433), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55767] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2578), 1, + anon_sym_LBRACE, + STATE(887), 1, + sym_compound_statement, STATE(1808), 1, sym_text_interpolation, - ACTIONS(3284), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55619] = 5, + [55783] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_compound_statement, STATE(1809), 1, sym_text_interpolation, - [55635] = 4, + ACTIONS(3435), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55797] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1810), 1, sym_text_interpolation, - ACTIONS(2902), 2, + ACTIONS(3322), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55649] = 5, + [55811] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2077), 1, - anon_sym_RPAREN, - ACTIONS(3365), 1, - anon_sym_EQ, STATE(1811), 1, sym_text_interpolation, - [55665] = 4, + ACTIONS(3437), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [55825] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2059), 1, + anon_sym_RPAREN, + ACTIONS(3396), 1, + anon_sym_EQ, STATE(1812), 1, sym_text_interpolation, - ACTIONS(418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55679] = 5, + [55841] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3394), 1, - anon_sym_LBRACE, - STATE(415), 1, - sym_compound_statement, STATE(1813), 1, sym_text_interpolation, - [55695] = 4, + ACTIONS(3439), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55855] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1347), 1, + sym_declaration_list, STATE(1814), 1, sym_text_interpolation, - ACTIONS(3396), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55709] = 4, + [55871] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, + STATE(1343), 1, + sym_compound_statement, STATE(1815), 1, sym_text_interpolation, - ACTIONS(3398), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55723] = 4, + [55887] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1301), 1, + sym_formal_parameters, STATE(1816), 1, sym_text_interpolation, - ACTIONS(3400), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55737] = 5, + [55903] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - STATE(958), 1, - sym_compound_statement, + STATE(427), 1, + sym_declaration_list, STATE(1817), 1, sym_text_interpolation, - [55753] = 4, + [55919] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_parenthesized_expression, STATE(1818), 1, sym_text_interpolation, - ACTIONS(1993), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [55767] = 4, + [55935] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1819), 1, sym_text_interpolation, - ACTIONS(3402), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55781] = 4, + ACTIONS(3027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [55949] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1820), 1, sym_text_interpolation, - ACTIONS(3404), 2, + ACTIONS(433), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55795] = 5, + [55963] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_LBRACE, - STATE(894), 1, - sym_compound_statement, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(29), 1, + sym_parenthesized_expression, STATE(1821), 1, sym_text_interpolation, - [55811] = 5, + [55979] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(28), 1, - sym_parenthesized_expression, + ACTIONS(2578), 1, + anon_sym_LBRACE, + STATE(875), 1, + sym_compound_statement, STATE(1822), 1, sym_text_interpolation, - [55827] = 4, + [55995] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1823), 1, sym_text_interpolation, - ACTIONS(3406), 2, + ACTIONS(3441), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55841] = 4, + [56009] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1824), 1, sym_text_interpolation, - ACTIONS(3408), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55855] = 4, + ACTIONS(3216), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [56023] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1825), 1, sym_text_interpolation, - ACTIONS(3410), 2, + ACTIONS(3443), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55869] = 4, + [56037] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3392), 1, + anon_sym_LPAREN, STATE(1826), 1, sym_text_interpolation, - ACTIONS(3270), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55883] = 5, + STATE(1827), 1, + sym_parenthesized_expression, + [56053] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - STATE(1779), 1, - sym_variable_name, + ACTIONS(3445), 1, + anon_sym_LBRACE, + STATE(905), 1, + sym_match_block, STATE(1827), 1, sym_text_interpolation, - [55899] = 4, + [56069] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, + STATE(1338), 1, + sym_compound_statement, STATE(1828), 1, sym_text_interpolation, - ACTIONS(3412), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55913] = 4, + [56085] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1829), 1, sym_text_interpolation, - ACTIONS(3414), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [55927] = 5, + ACTIONS(3447), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56099] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1578), 1, + ACTIONS(2578), 1, + anon_sym_LBRACE, + STATE(897), 1, sym_compound_statement, STATE(1830), 1, sym_text_interpolation, - [55943] = 4, + [56115] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1831), 1, sym_text_interpolation, - ACTIONS(3416), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55957] = 4, + ACTIONS(3449), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [56129] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1484), 1, + anon_sym_LPAREN, + STATE(660), 1, + sym_arguments, STATE(1832), 1, sym_text_interpolation, - ACTIONS(3418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55971] = 4, + [56145] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1833), 1, sym_text_interpolation, - ACTIONS(3420), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55985] = 4, + ACTIONS(3271), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56159] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2524), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_declaration_list, STATE(1834), 1, sym_text_interpolation, - ACTIONS(3257), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [55999] = 4, + [56175] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1569), 1, + anon_sym_DOLLAR, STATE(1835), 1, sym_text_interpolation, - ACTIONS(3422), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56013] = 5, + STATE(1925), 1, + sym_variable_name, + [56191] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_declaration_list, STATE(1836), 1, sym_text_interpolation, - [56029] = 5, + ACTIONS(3451), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56205] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3424), 1, - anon_sym_LBRACE, - STATE(960), 1, - sym_match_block, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym_parenthesized_expression, STATE(1837), 1, sym_text_interpolation, - [56045] = 4, + [56221] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + STATE(1558), 1, + sym_variable_name, STATE(1838), 1, sym_text_interpolation, - ACTIONS(3426), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56059] = 5, + [56237] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2535), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - STATE(418), 1, + STATE(429), 1, sym_declaration_list, STATE(1839), 1, sym_text_interpolation, - [56075] = 4, + [56253] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1840), 1, sym_text_interpolation, - ACTIONS(3428), 2, + ACTIONS(3453), 2, anon_sym_COMMA, anon_sym_RPAREN, - [56089] = 5, + [56267] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3430), 1, - sym_name, - STATE(1465), 1, - sym_namespace_name, + ACTIONS(2123), 1, + anon_sym_RPAREN, + ACTIONS(3396), 1, + anon_sym_EQ, STATE(1841), 1, sym_text_interpolation, - [56105] = 4, + [56283] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3392), 1, + anon_sym_LPAREN, + STATE(1665), 1, + sym_parenthesized_expression, STATE(1842), 1, sym_text_interpolation, - ACTIONS(3432), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56119] = 5, + [56299] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1525), 1, - sym_formal_parameters, STATE(1843), 1, sym_text_interpolation, - [56135] = 5, + ACTIONS(3455), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56313] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3387), 1, - anon_sym_LPAREN, - STATE(1837), 1, - sym_parenthesized_expression, + ACTIONS(1569), 1, + anon_sym_DOLLAR, STATE(1844), 1, sym_text_interpolation, - [56151] = 4, + STATE(1890), 1, + sym_variable_name, + [56329] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1845), 1, sym_text_interpolation, - ACTIONS(3434), 2, + ACTIONS(3457), 2, anon_sym_COMMA, anon_sym_RPAREN, - [56165] = 5, + [56343] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(422), 1, - sym_declaration_list, + ACTIONS(1569), 1, + anon_sym_DOLLAR, STATE(1846), 1, sym_text_interpolation, - [56181] = 5, + STATE(1920), 1, + sym_variable_name, + [56359] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - STATE(875), 1, - sym_compound_statement, + STATE(420), 1, + sym_declaration_list, STATE(1847), 1, sym_text_interpolation, - [56197] = 4, + [56375] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2578), 1, + anon_sym_LBRACE, + STATE(929), 1, + sym_compound_statement, STATE(1848), 1, sym_text_interpolation, - ACTIONS(3098), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56211] = 4, + [56391] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1849), 1, sym_text_interpolation, - ACTIONS(3436), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56225] = 5, + ACTIONS(423), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56405] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3387), 1, - anon_sym_LPAREN, - STATE(1679), 1, - sym_parenthesized_expression, + ACTIONS(3459), 1, + anon_sym_LBRACE, + STATE(413), 1, + sym_compound_statement, STATE(1850), 1, sym_text_interpolation, - [56241] = 4, + [56421] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2578), 1, + anon_sym_LBRACE, + STATE(902), 1, + sym_compound_statement, STATE(1851), 1, sym_text_interpolation, - ACTIONS(3438), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56255] = 4, + [56437] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1551), 1, + anon_sym_LPAREN, + STATE(725), 1, + sym_arguments, STATE(1852), 1, sym_text_interpolation, - ACTIONS(3440), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56269] = 5, + [56453] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_LPAREN, - STATE(1372), 1, - sym_formal_parameters, STATE(1853), 1, sym_text_interpolation, - [56285] = 4, + ACTIONS(3208), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56467] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1854), 1, sym_text_interpolation, - ACTIONS(2593), 2, + ACTIONS(3461), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56299] = 5, + [56481] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1479), 1, - anon_sym_LPAREN, - STATE(639), 1, - sym_arguments, STATE(1855), 1, sym_text_interpolation, - [56315] = 5, + ACTIONS(2962), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56495] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2485), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - STATE(1502), 1, - sym_declaration_list, + ACTIONS(595), 1, + sym_comment, + STATE(749), 1, + sym_compound_statement, STATE(1856), 1, sym_text_interpolation, - [56331] = 5, + [56511] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, STATE(1857), 1, sym_text_interpolation, - [56347] = 5, + ACTIONS(3039), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56525] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3444), 1, - anon_sym_SEMI, - ACTIONS(3446), 1, - sym__automatic_semicolon, STATE(1858), 1, sym_text_interpolation, - [56363] = 4, + ACTIONS(3463), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56539] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2973), 1, + anon_sym_LBRACE, + STATE(488), 1, + sym_declaration_list, STATE(1859), 1, sym_text_interpolation, - ACTIONS(3448), 2, - anon_sym_SEMI, - anon_sym_COLON, - [56377] = 4, + [56555] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_parenthesized_expression, STATE(1860), 1, sym_text_interpolation, - ACTIONS(3450), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56391] = 5, + [56571] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(69), 1, - sym_parenthesized_expression, STATE(1861), 1, sym_text_interpolation, - [56407] = 4, + ACTIONS(3465), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56585] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(32), 1, + sym_parenthesized_expression, STATE(1862), 1, sym_text_interpolation, - ACTIONS(3452), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56421] = 4, + [56601] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1863), 1, sym_text_interpolation, - ACTIONS(3454), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56435] = 4, + ACTIONS(3467), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [56615] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2568), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_declaration_list, STATE(1864), 1, sym_text_interpolation, - ACTIONS(2998), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56449] = 5, + [56631] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2485), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - STATE(763), 1, - sym_declaration_list, + ACTIONS(595), 1, + sym_comment, + STATE(764), 1, + sym_compound_statement, STATE(1865), 1, sym_text_interpolation, - [56465] = 5, + [56647] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_declaration_list, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1631), 1, + sym_formal_parameters, STATE(1866), 1, sym_text_interpolation, - [56481] = 5, + [56663] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - STATE(538), 1, - sym_arguments, STATE(1867), 1, sym_text_interpolation, - [56497] = 4, + ACTIONS(2017), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56677] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1265), 1, + sym_formal_parameters, STATE(1868), 1, sym_text_interpolation, - ACTIONS(3456), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56511] = 5, + [56693] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(336), 1, - anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1516), 1, + sym_formal_parameters, STATE(1869), 1, sym_text_interpolation, - STATE(2070), 1, - sym_colon_block, - [56527] = 5, + [56709] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3387), 1, - anon_sym_LPAREN, - STATE(1758), 1, - sym_parenthesized_expression, STATE(1870), 1, sym_text_interpolation, - [56543] = 4, + ACTIONS(3198), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56723] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(202), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, + STATE(456), 1, + sym_compound_statement, STATE(1871), 1, sym_text_interpolation, - ACTIONS(1985), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56557] = 4, + [56739] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1518), 1, + sym_formal_parameters, STATE(1872), 1, sym_text_interpolation, - ACTIONS(3458), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56571] = 5, + [56755] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1648), 1, - sym_formal_parameters, STATE(1873), 1, sym_text_interpolation, - [56587] = 4, + ACTIONS(3469), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56769] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + STATE(1829), 1, + sym_variable_name, STATE(1874), 1, sym_text_interpolation, - ACTIONS(3460), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56601] = 5, + [56785] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(199), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(455), 1, - sym_compound_statement, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1326), 1, + sym_declaration_list, STATE(1875), 1, sym_text_interpolation, - [56617] = 5, + [56801] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, STATE(1876), 1, sym_text_interpolation, - STATE(1896), 1, - sym_variable_name, - [56633] = 4, + ACTIONS(3471), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56815] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1877), 1, sym_text_interpolation, - ACTIONS(3462), 2, + ACTIONS(3473), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56647] = 5, + [56829] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, + ACTIONS(2522), 1, anon_sym_LPAREN, - STATE(1555), 1, + STATE(1584), 1, sym_formal_parameters, STATE(1878), 1, sym_text_interpolation, - [56663] = 5, + [56845] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym_declaration_list, STATE(1879), 1, sym_text_interpolation, - [56679] = 5, + ACTIONS(3475), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [56859] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1339), 1, - sym_declaration_list, STATE(1880), 1, sym_text_interpolation, - [56695] = 5, + ACTIONS(3477), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56873] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(770), 1, - sym_compound_statement, + ACTIONS(3379), 1, + anon_sym_LPAREN, + STATE(88), 1, + sym_parenthesized_expression, STATE(1881), 1, sym_text_interpolation, - [56711] = 5, + [56889] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1641), 1, - sym_formal_parameters, STATE(1882), 1, sym_text_interpolation, - [56727] = 5, + ACTIONS(2013), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [56903] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1557), 1, - sym_formal_parameters, STATE(1883), 1, sym_text_interpolation, - [56743] = 5, + ACTIONS(3479), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56917] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3464), 1, - anon_sym_LPAREN, - ACTIONS(3466), 1, - anon_sym_RPAREN, STATE(1884), 1, sym_text_interpolation, - [56759] = 4, + ACTIONS(3481), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56931] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1885), 1, sym_text_interpolation, - ACTIONS(3468), 2, + ACTIONS(2622), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56773] = 5, + [56945] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1468), 1, - anon_sym_BSLASH, - STATE(1789), 1, - aux_sym_namespace_name_repeat1, + ACTIONS(2524), 1, + anon_sym_LBRACE, + STATE(757), 1, + sym_declaration_list, STATE(1886), 1, sym_text_interpolation, - [56789] = 5, + [56961] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(2522), 1, anon_sym_LPAREN, - STATE(85), 1, - sym_parenthesized_expression, + STATE(1583), 1, + sym_formal_parameters, STATE(1887), 1, sym_text_interpolation, - [56805] = 4, + [56977] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3485), 1, + anon_sym_RPAREN, STATE(1888), 1, sym_text_interpolation, - ACTIONS(3470), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56819] = 4, + [56993] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1889), 1, sym_text_interpolation, - ACTIONS(3472), 2, + ACTIONS(3487), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56833] = 4, + [57007] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1890), 1, sym_text_interpolation, - ACTIONS(3474), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56847] = 5, + ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57021] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1334), 1, - sym_compound_statement, STATE(1891), 1, sym_text_interpolation, - [56863] = 5, + ACTIONS(3491), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57035] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2035), 1, - anon_sym_RPAREN, - ACTIONS(3365), 1, - anon_sym_EQ, STATE(1892), 1, sym_text_interpolation, - [56879] = 5, + ACTIONS(3493), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57049] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3394), 1, + ACTIONS(2530), 1, anon_sym_LBRACE, - STATE(414), 1, - sym_compound_statement, + STATE(1337), 1, + sym_declaration_list, STATE(1893), 1, sym_text_interpolation, - [56895] = 5, + [57065] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, + ACTIONS(2522), 1, anon_sym_LPAREN, - STATE(1587), 1, + STATE(1591), 1, sym_formal_parameters, STATE(1894), 1, sym_text_interpolation, - [56911] = 4, + [57081] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1359), 1, + sym_declaration_list, STATE(1895), 1, sym_text_interpolation, - ACTIONS(3476), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56925] = 4, + [57097] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1896), 1, sym_text_interpolation, - ACTIONS(3478), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56939] = 4, + ACTIONS(3495), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57111] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2035), 1, + anon_sym_RPAREN, + ACTIONS(3396), 1, + anon_sym_EQ, STATE(1897), 1, sym_text_interpolation, - ACTIONS(3286), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [56953] = 5, + [57127] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(2539), 1, + ACTIONS(363), 1, anon_sym_LBRACE, - STATE(889), 1, + ACTIONS(595), 1, + sym_comment, + STATE(752), 1, sym_compound_statement, STATE(1898), 1, sym_text_interpolation, - [56969] = 5, + [57143] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2938), 1, - anon_sym_LBRACE, - STATE(480), 1, - sym_declaration_list, STATE(1899), 1, sym_text_interpolation, - [56985] = 5, + ACTIONS(3175), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57157] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3480), 1, - anon_sym_SEMI, - ACTIONS(3482), 1, - sym__automatic_semicolon, STATE(1900), 1, sym_text_interpolation, - [57001] = 4, + ACTIONS(3497), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57171] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, + STATE(750), 1, + sym_compound_statement, STATE(1901), 1, sym_text_interpolation, - ACTIONS(1985), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [57015] = 4, + [57187] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1902), 1, sym_text_interpolation, - ACTIONS(3484), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57029] = 5, + ACTIONS(3499), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57201] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1530), 1, - anon_sym_LPAREN, - STATE(724), 1, - sym_arguments, + ACTIONS(2973), 1, + anon_sym_LBRACE, + STATE(480), 1, + sym_declaration_list, STATE(1903), 1, sym_text_interpolation, - [57045] = 5, + [57217] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1632), 1, - sym_formal_parameters, STATE(1904), 1, sym_text_interpolation, - [57061] = 4, + ACTIONS(3501), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57231] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1905), 1, sym_text_interpolation, - ACTIONS(3169), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [57075] = 5, + ACTIONS(495), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57245] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3486), 1, - anon_sym_SEMI, - ACTIONS(3488), 1, - sym__automatic_semicolon, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + STATE(1498), 1, + sym_variable_name, STATE(1906), 1, sym_text_interpolation, - [57091] = 5, + [57261] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - STATE(1831), 1, - sym_variable_name, + ACTIONS(595), 1, + sym_comment, + ACTIONS(2578), 1, + anon_sym_LBRACE, + STATE(891), 1, + sym_compound_statement, STATE(1907), 1, sym_text_interpolation, - [57107] = 5, + [57277] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_declaration_list, + ACTIONS(2522), 1, + anon_sym_LPAREN, + STATE(1632), 1, + sym_formal_parameters, STATE(1908), 1, sym_text_interpolation, - [57123] = 5, + [57293] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3490), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - STATE(753), 1, - sym_match_block, + STATE(418), 1, + sym_declaration_list, STATE(1909), 1, sym_text_interpolation, - [57139] = 4, + [57309] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1910), 1, sym_text_interpolation, - ACTIONS(3492), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57153] = 5, + ACTIONS(487), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57323] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3358), 1, - sym_name, STATE(1911), 1, sym_text_interpolation, - STATE(2091), 1, - sym_namespace_name, - [57169] = 4, + ACTIONS(3503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57337] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1912), 1, sym_text_interpolation, - ACTIONS(1993), 2, + ACTIONS(3505), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57183] = 4, + [57351] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, + STATE(1325), 1, + sym_compound_statement, STATE(1913), 1, sym_text_interpolation, - ACTIONS(3494), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57197] = 5, + [57367] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - STATE(1902), 1, - sym_variable_name, + ACTIONS(3507), 1, + sym_name, + STATE(1480), 1, + sym_namespace_name, STATE(1914), 1, sym_text_interpolation, - [57213] = 5, + [57383] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1341), 1, - sym_declaration_list, + ACTIONS(3389), 1, + sym_name, STATE(1915), 1, sym_text_interpolation, - [57229] = 5, + STATE(2113), 1, + sym_namespace_name, + [57399] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(426), 1, - sym_declaration_list, STATE(1916), 1, sym_text_interpolation, - [57245] = 5, + ACTIONS(2029), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57413] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3496), 1, - sym_name, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1332), 1, + sym_declaration_list, STATE(1917), 1, sym_text_interpolation, - STATE(2073), 1, - sym_namespace_name, - [57261] = 4, + [57429] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3459), 1, + anon_sym_LBRACE, + STATE(415), 1, + sym_compound_statement, STATE(1918), 1, sym_text_interpolation, - ACTIONS(3499), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57275] = 4, + [57445] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3385), 1, + anon_sym_LPAREN, + STATE(1755), 1, + sym_parenthesized_expression, STATE(1919), 1, sym_text_interpolation, - ACTIONS(3501), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [57289] = 5, + [57461] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1308), 1, - sym_compound_statement, STATE(1920), 1, sym_text_interpolation, - [57305] = 4, + ACTIONS(3509), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57475] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3511), 1, + sym_name, STATE(1921), 1, sym_text_interpolation, - ACTIONS(3503), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57319] = 4, + STATE(2087), 1, + sym_namespace_name, + [57491] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3514), 1, + anon_sym_SEMI, + ACTIONS(3516), 1, + sym__automatic_semicolon, STATE(1922), 1, sym_text_interpolation, - ACTIONS(478), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57333] = 4, + [57507] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + STATE(1845), 1, + sym_variable_name, STATE(1923), 1, sym_text_interpolation, - ACTIONS(486), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57347] = 5, + [57523] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_LPAREN, - STATE(1374), 1, - sym_formal_parameters, STATE(1924), 1, sym_text_interpolation, - [57363] = 4, + ACTIONS(3518), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57537] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1925), 1, sym_text_interpolation, - ACTIONS(2861), 2, - anon_sym_EQ, + ACTIONS(3520), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [57377] = 5, + [57551] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, + STATE(1350), 1, + sym_compound_statement, STATE(1926), 1, sym_text_interpolation, - STATE(1928), 1, - sym_variable_name, - [57393] = 5, + [57567] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(51), 1, - sym_parenthesized_expression, STATE(1927), 1, sym_text_interpolation, - [57409] = 4, + ACTIONS(2874), 2, + anon_sym_EQ, + anon_sym_RPAREN, + [57581] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + STATE(1843), 1, + sym_variable_name, STATE(1928), 1, sym_text_interpolation, - ACTIONS(3505), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57423] = 5, + [57597] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(420), 1, - sym_declaration_list, STATE(1929), 1, sym_text_interpolation, - [57439] = 4, + ACTIONS(3522), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57611] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1930), 1, sym_text_interpolation, - ACTIONS(3507), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57453] = 4, + ACTIONS(3524), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57625] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(363), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, sym_comment, + STATE(765), 1, + sym_compound_statement, STATE(1931), 1, sym_text_interpolation, - ACTIONS(3509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57467] = 5, + [57641] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - STATE(1910), 1, - sym_variable_name, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1362), 1, + sym_declaration_list, STATE(1932), 1, sym_text_interpolation, - [57483] = 4, + [57657] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(2530), 1, + anon_sym_LBRACE, + STATE(1364), 1, + sym_declaration_list, STATE(1933), 1, sym_text_interpolation, - ACTIONS(3511), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57497] = 5, + [57673] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2483), 1, - anon_sym_LPAREN, - STATE(1282), 1, - sym_formal_parameters, STATE(1934), 1, sym_text_interpolation, - [57513] = 5, + ACTIONS(3526), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57687] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(1564), 1, - anon_sym_DOLLAR, - STATE(1560), 1, - sym_variable_name, + ACTIONS(1352), 1, + anon_sym_LPAREN, + STATE(539), 1, + sym_arguments, STATE(1935), 1, sym_text_interpolation, - [57529] = 5, + [57703] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(358), 1, - anon_sym_LBRACE, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - STATE(1726), 1, - sym_compound_statement, STATE(1936), 1, sym_text_interpolation, - [57545] = 4, + ACTIONS(3528), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57717] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, + ACTIONS(3530), 1, + anon_sym_SEMI, + ACTIONS(3532), 1, + sym__automatic_semicolon, STATE(1937), 1, sym_text_interpolation, - ACTIONS(3513), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57559] = 5, + [57733] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3394), 1, + ACTIONS(2530), 1, anon_sym_LBRACE, - STATE(411), 1, - sym_compound_statement, + STATE(1367), 1, + sym_declaration_list, STATE(1938), 1, sym_text_interpolation, - [57575] = 4, + [57749] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1939), 1, sym_text_interpolation, - ACTIONS(3515), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57589] = 4, + ACTIONS(3534), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57763] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, STATE(1940), 1, sym_text_interpolation, - ACTIONS(3517), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57603] = 5, + ACTIONS(3131), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57777] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2539), 1, + ACTIONS(2524), 1, anon_sym_LBRACE, - STATE(929), 1, - sym_compound_statement, + STATE(761), 1, + sym_declaration_list, STATE(1941), 1, sym_text_interpolation, - [57619] = 4, + [57793] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2077), 1, - anon_sym_RPAREN, STATE(1942), 1, sym_text_interpolation, - [57632] = 4, + ACTIONS(3536), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57807] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3519), 1, - aux_sym_foreach_statement_token2, + ACTIONS(3459), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_compound_statement, STATE(1943), 1, sym_text_interpolation, - [57645] = 4, + [57823] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3521), 1, - anon_sym_RPAREN, + ACTIONS(1569), 1, + anon_sym_DOLLAR, + STATE(1836), 1, + sym_variable_name, STATE(1944), 1, sym_text_interpolation, - [57658] = 4, + [57839] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(752), 1, - anon_sym_RPAREN, STATE(1945), 1, sym_text_interpolation, - [57671] = 4, + ACTIONS(3121), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57853] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, + ACTIONS(3538), 1, + anon_sym_SEMI, + ACTIONS(3540), 1, + sym__automatic_semicolon, STATE(1946), 1, sym_text_interpolation, - [57684] = 4, + [57869] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, + ACTIONS(2059), 1, + anon_sym_RPAREN, STATE(1947), 1, sym_text_interpolation, - [57697] = 4, + [57882] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(708), 1, - anon_sym_RPAREN, + ACTIONS(3542), 1, + aux_sym_foreach_statement_token2, STATE(1948), 1, sym_text_interpolation, - [57710] = 4, + [57895] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3525), 1, - anon_sym_RPAREN, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, STATE(1949), 1, sym_text_interpolation, - [57723] = 4, + [57908] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3527), 1, - sym_name, + ACTIONS(3544), 1, + anon_sym_RPAREN, STATE(1950), 1, sym_text_interpolation, - [57736] = 4, + [57921] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_EQ, + ACTIONS(3546), 1, + anon_sym_LPAREN, STATE(1951), 1, sym_text_interpolation, - [57749] = 4, + [57934] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2653), 1, - anon_sym_BSLASH, + ACTIONS(3548), 1, + aux_sym_while_statement_token2, STATE(1952), 1, sym_text_interpolation, - [57762] = 4, + [57947] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3088), 1, - anon_sym_RPAREN, + ACTIONS(2703), 1, + sym_name, STATE(1953), 1, sym_text_interpolation, - [57775] = 4, + [57960] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3531), 1, + ACTIONS(3550), 1, anon_sym_EQ, STATE(1954), 1, sym_text_interpolation, - [57788] = 4, + [57973] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3533), 1, - sym_name, + ACTIONS(797), 1, + anon_sym_RPAREN, STATE(1955), 1, sym_text_interpolation, - [57801] = 4, + [57986] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3535), 1, - sym_name, + ACTIONS(3552), 1, + anon_sym_LPAREN, STATE(1956), 1, sym_text_interpolation, - [57814] = 4, + [57999] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_RBRACK, + ACTIONS(3554), 1, + anon_sym_RPAREN, STATE(1957), 1, sym_text_interpolation, - [57827] = 4, + [58012] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_RPAREN, + ACTIONS(3168), 1, + anon_sym_LBRACE, STATE(1958), 1, sym_text_interpolation, - [57840] = 4, + [58025] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3539), 1, - anon_sym_EQ_GT, + ACTIONS(3556), 1, + anon_sym_RPAREN, STATE(1959), 1, sym_text_interpolation, - [57853] = 4, + [58038] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2762), 1, - sym_name, + ACTIONS(3558), 1, + anon_sym_EQ, STATE(1960), 1, sym_text_interpolation, - [57866] = 4, + [58051] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3541), 1, - anon_sym_RPAREN, + ACTIONS(3560), 1, + anon_sym_BSLASH, STATE(1961), 1, sym_text_interpolation, - [57879] = 4, + [58064] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_BSLASH, + ACTIONS(3562), 1, + anon_sym_EQ, STATE(1962), 1, sym_text_interpolation, - [57892] = 4, + [58077] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3545), 1, - anon_sym_EQ, + ACTIONS(2731), 1, + anon_sym_BSLASH, STATE(1963), 1, sym_text_interpolation, - [57905] = 4, + [58090] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3547), 1, - anon_sym_EQ, + ACTIONS(3564), 1, + anon_sym_RPAREN, STATE(1964), 1, sym_text_interpolation, - [57918] = 4, + [58103] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3549), 1, - anon_sym_LPAREN, + ACTIONS(747), 1, + anon_sym_RPAREN, STATE(1965), 1, sym_text_interpolation, - [57931] = 4, + [58116] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(2035), 1, anon_sym_RPAREN, STATE(1966), 1, sym_text_interpolation, - [57944] = 4, + [58129] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3553), 1, + ACTIONS(781), 1, anon_sym_RPAREN, STATE(1967), 1, sym_text_interpolation, - [57957] = 4, + [58142] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_LPAREN, + ACTIONS(3566), 1, + anon_sym_SEMI, STATE(1968), 1, sym_text_interpolation, - [57970] = 4, + [58155] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3557), 1, - anon_sym_EQ_GT, + ACTIONS(3568), 1, + anon_sym_EQ, STATE(1969), 1, sym_text_interpolation, - [57983] = 4, + [58168] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(786), 1, + ACTIONS(3570), 1, anon_sym_RPAREN, STATE(1970), 1, sym_text_interpolation, - [57996] = 4, + [58181] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3559), 1, - anon_sym_EQ_GT, + ACTIONS(3572), 1, + anon_sym_RPAREN, STATE(1971), 1, sym_text_interpolation, - [58009] = 4, + [58194] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3561), 1, - anon_sym_LPAREN, + ACTIONS(3574), 1, + anon_sym_RPAREN, STATE(1972), 1, sym_text_interpolation, - [58022] = 4, + [58207] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3563), 1, - anon_sym_EQ_GT, + ACTIONS(3485), 1, + anon_sym_RPAREN, STATE(1973), 1, sym_text_interpolation, - [58035] = 4, + [58220] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2035), 1, - anon_sym_RPAREN, + ACTIONS(3576), 1, + anon_sym_EQ_GT, STATE(1974), 1, sym_text_interpolation, - [58048] = 4, + [58233] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(788), 1, - anon_sym_SEMI, + ACTIONS(3578), 1, + anon_sym_RPAREN, STATE(1975), 1, sym_text_interpolation, - [58061] = 4, + [58246] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(784), 1, - anon_sym_RPAREN, + ACTIONS(3580), 1, + anon_sym_EQ_GT, STATE(1976), 1, sym_text_interpolation, - [58074] = 4, + [58259] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3466), 1, - anon_sym_RPAREN, + ACTIONS(3582), 1, + aux_sym_arrow_function_token1, STATE(1977), 1, sym_text_interpolation, - [58087] = 4, + [58272] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_RPAREN, + ACTIONS(3584), 1, + anon_sym_EQ_GT, STATE(1978), 1, sym_text_interpolation, - [58100] = 4, + [58285] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(725), 1, anon_sym_RPAREN, STATE(1979), 1, sym_text_interpolation, - [58113] = 4, + [58298] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3569), 1, - anon_sym_RPAREN, + ACTIONS(3586), 1, + sym_name, STATE(1980), 1, sym_text_interpolation, - [58126] = 4, + [58311] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3571), 1, - anon_sym_RPAREN, + ACTIONS(3588), 1, + anon_sym_EQ_GT, STATE(1981), 1, sym_text_interpolation, - [58139] = 4, + [58324] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_COLON_COLON, + ACTIONS(3590), 1, + anon_sym_BSLASH, STATE(1982), 1, sym_text_interpolation, - [58152] = 4, + [58337] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3575), 1, - aux_sym_namespace_use_declaration_token3, + ACTIONS(3592), 1, + anon_sym_EQ_GT, STATE(1983), 1, sym_text_interpolation, - [58165] = 4, + [58350] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3577), 1, - aux_sym_arrow_function_token1, + ACTIONS(3594), 1, + anon_sym_EQ_GT, STATE(1984), 1, sym_text_interpolation, - [58178] = 4, + [58363] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_EQ_GT, + ACTIONS(3596), 1, + aux_sym_namespace_use_declaration_token3, STATE(1985), 1, sym_text_interpolation, - [58191] = 4, + [58376] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3581), 1, - aux_sym_class_declaration_token1, + ACTIONS(3598), 1, + anon_sym_RPAREN, STATE(1986), 1, sym_text_interpolation, - [58204] = 4, + [58389] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3583), 1, - anon_sym_RPAREN, + ACTIONS(3600), 1, + anon_sym_EQ_GT, STATE(1987), 1, sym_text_interpolation, - [58217] = 4, + [58402] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3585), 1, - anon_sym_BSLASH, + ACTIONS(3602), 1, + anon_sym_EQ_GT, STATE(1988), 1, sym_text_interpolation, - [58230] = 4, + [58415] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3587), 1, - sym_name, + ACTIONS(3604), 1, + aux_sym_class_declaration_token1, STATE(1989), 1, sym_text_interpolation, - [58243] = 4, + [58428] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3589), 1, - anon_sym_EQ_GT, + ACTIONS(3606), 1, + anon_sym_RPAREN, STATE(1990), 1, sym_text_interpolation, - [58256] = 4, + [58441] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_EQ_GT, + ACTIONS(3608), 1, + anon_sym_BSLASH, STATE(1991), 1, sym_text_interpolation, - [58269] = 4, + [58454] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3593), 1, - aux_sym_if_statement_token2, + ACTIONS(3610), 1, + anon_sym_EQ, STATE(1992), 1, sym_text_interpolation, - [58282] = 4, + [58467] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3595), 1, - anon_sym_EQ_GT, + ACTIONS(3612), 1, + sym_name, STATE(1993), 1, sym_text_interpolation, - [58295] = 4, + [58480] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3614), 1, anon_sym_COLON_COLON, STATE(1994), 1, sym_text_interpolation, - [58308] = 4, + [58493] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3599), 1, - anon_sym_EQ_GT, + ACTIONS(3616), 1, + anon_sym_RPAREN, STATE(1995), 1, sym_text_interpolation, - [58321] = 4, + [58506] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3601), 1, - sym_name, + ACTIONS(3618), 1, + anon_sym_RPAREN, STATE(1996), 1, sym_text_interpolation, - [58334] = 4, + [58519] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3603), 1, - anon_sym_EQ_GT, + ACTIONS(3620), 1, + sym_name, STATE(1997), 1, sym_text_interpolation, - [58347] = 4, + [58532] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3605), 1, - aux_sym_class_declaration_token1, + ACTIONS(3622), 1, + anon_sym_LPAREN, STATE(1998), 1, sym_text_interpolation, - [58360] = 4, + [58545] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3607), 1, - aux_sym_arrow_function_token1, + ACTIONS(3624), 1, + aux_sym_foreach_statement_token2, STATE(1999), 1, sym_text_interpolation, - [58373] = 4, + [58558] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3609), 1, - anon_sym_SEMI, + ACTIONS(3626), 1, + sym_name, STATE(2000), 1, sym_text_interpolation, - [58386] = 4, + [58571] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3611), 1, - anon_sym_BSLASH, + ACTIONS(3628), 1, + aux_sym_while_statement_token1, STATE(2001), 1, sym_text_interpolation, - [58399] = 4, + [58584] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3613), 1, - anon_sym_RPAREN, + ACTIONS(3630), 1, + anon_sym_EQ_GT, STATE(2002), 1, sym_text_interpolation, - [58412] = 4, + [58597] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_EQ, + ACTIONS(3632), 1, + aux_sym_class_declaration_token1, STATE(2003), 1, sym_text_interpolation, - [58425] = 4, + [58610] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3617), 1, - aux_sym_while_statement_token1, + ACTIONS(3634), 1, + aux_sym_arrow_function_token1, STATE(2004), 1, sym_text_interpolation, - [58438] = 4, + [58623] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3619), 1, - aux_sym_class_declaration_token1, + ACTIONS(3636), 1, + aux_sym_namespace_use_declaration_token3, STATE(2005), 1, sym_text_interpolation, - [58451] = 4, + [58636] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(3638), 1, anon_sym_BSLASH, STATE(2006), 1, sym_text_interpolation, - [58464] = 4, + [58649] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_BSLASH, + ACTIONS(3640), 1, + sym_name, STATE(2007), 1, sym_text_interpolation, - [58477] = 4, + [58662] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2752), 1, - sym_name, + ACTIONS(3222), 1, + anon_sym_LBRACE, STATE(2008), 1, sym_text_interpolation, - [58490] = 4, + [58675] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3625), 1, - anon_sym_RPAREN, + ACTIONS(3642), 1, + aux_sym_while_statement_token1, STATE(2009), 1, sym_text_interpolation, - [58503] = 4, + [58688] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_BSLASH, + ACTIONS(3644), 1, + aux_sym_class_declaration_token1, STATE(2010), 1, sym_text_interpolation, - [58516] = 4, + [58701] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3629), 1, - anon_sym_COLON_COLON, + ACTIONS(3646), 1, + anon_sym_BSLASH, STATE(2011), 1, sym_text_interpolation, - [58529] = 4, + [58714] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3631), 1, - anon_sym_COLON_COLON, + ACTIONS(3648), 1, + anon_sym_BSLASH, STATE(2012), 1, sym_text_interpolation, - [58542] = 4, + [58727] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3192), 1, - anon_sym_LBRACE, + ACTIONS(3650), 1, + anon_sym_COLON_COLON, STATE(2013), 1, sym_text_interpolation, - [58555] = 4, + [58740] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_BSLASH, + ACTIONS(3652), 1, + anon_sym_RPAREN, STATE(2014), 1, sym_text_interpolation, - [58568] = 4, + [58753] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3365), 1, - anon_sym_EQ, + ACTIONS(3654), 1, + sym_name, STATE(2015), 1, sym_text_interpolation, - [58581] = 4, + [58766] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3635), 1, - aux_sym_while_statement_token1, + ACTIONS(721), 1, + anon_sym_RPAREN, STATE(2016), 1, sym_text_interpolation, - [58594] = 4, + [58779] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(764), 1, - anon_sym_SEMI, + ACTIONS(3656), 1, + anon_sym_COLON_COLON, STATE(2017), 1, sym_text_interpolation, - [58607] = 4, + [58792] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3637), 1, - anon_sym_LPAREN, + ACTIONS(3658), 1, + anon_sym_COLON_COLON, STATE(2018), 1, sym_text_interpolation, - [58620] = 4, + [58805] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3639), 1, - anon_sym_LPAREN, + ACTIONS(3660), 1, + anon_sym_BSLASH, STATE(2019), 1, sym_text_interpolation, - [58633] = 4, + [58818] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3641), 1, + ACTIONS(3662), 1, anon_sym_COLON_COLON, STATE(2020), 1, sym_text_interpolation, - [58646] = 4, + [58831] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3643), 1, - anon_sym_SEMI, + ACTIONS(3664), 1, + anon_sym_LPAREN, STATE(2021), 1, sym_text_interpolation, - [58659] = 4, + [58844] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(794), 1, - anon_sym_RPAREN, + ACTIONS(771), 1, + anon_sym_SEMI, STATE(2022), 1, sym_text_interpolation, - [58672] = 4, + [58857] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3645), 1, - anon_sym_COLON_COLON, + ACTIONS(3666), 1, + anon_sym_LPAREN, STATE(2023), 1, sym_text_interpolation, - [58685] = 4, + [58870] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3647), 1, - aux_sym_namespace_use_declaration_token3, + ACTIONS(3668), 1, + anon_sym_COLON_COLON, STATE(2024), 1, sym_text_interpolation, - [58698] = 4, + [58883] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3649), 1, - sym_name, + ACTIONS(3670), 1, + anon_sym_EQ_GT, STATE(2025), 1, sym_text_interpolation, - [58711] = 4, + [58896] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3651), 1, + ACTIONS(3672), 1, anon_sym_EQ_GT, STATE(2026), 1, sym_text_interpolation, - [58724] = 4, + [58909] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3653), 1, - anon_sym_LPAREN, + ACTIONS(793), 1, + anon_sym_RPAREN, STATE(2027), 1, sym_text_interpolation, - [58737] = 4, + [58922] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3655), 1, - anon_sym_COLON_COLON, + ACTIONS(3674), 1, + sym_name, STATE(2028), 1, sym_text_interpolation, - [58750] = 4, + [58935] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3657), 1, - anon_sym_RPAREN, + ACTIONS(3676), 1, + anon_sym_SEMI, STATE(2029), 1, sym_text_interpolation, - [58763] = 4, + [58948] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(782), 1, - anon_sym_RPAREN, + ACTIONS(3678), 1, + sym_name, STATE(2030), 1, sym_text_interpolation, - [58776] = 4, + [58961] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(704), 1, - anon_sym_RBRACK, + ACTIONS(3680), 1, + anon_sym_COLON_COLON, STATE(2031), 1, sym_text_interpolation, - [58789] = 4, + [58974] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3659), 1, - aux_sym_foreach_statement_token2, + ACTIONS(3682), 1, + anon_sym_COLON_COLON, STATE(2032), 1, sym_text_interpolation, - [58802] = 4, + [58987] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3661), 1, - anon_sym_RPAREN, + ACTIONS(3684), 1, + anon_sym_LPAREN, STATE(2033), 1, sym_text_interpolation, - [58815] = 4, + [59000] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3663), 1, - sym_name, + ACTIONS(701), 1, + anon_sym_RBRACK, STATE(2034), 1, sym_text_interpolation, - [58828] = 4, + [59013] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3665), 1, - sym_name, + ACTIONS(783), 1, + anon_sym_RPAREN, STATE(2035), 1, sym_text_interpolation, - [58841] = 4, + [59026] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_LPAREN, + ACTIONS(3686), 1, + sym_name, STATE(2036), 1, sym_text_interpolation, - [58854] = 4, + [59039] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3669), 1, - anon_sym_EQ_GT, + ACTIONS(3483), 1, + anon_sym_LPAREN, STATE(2037), 1, sym_text_interpolation, - [58867] = 4, + [59052] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3671), 1, - sym_name, + ACTIONS(3688), 1, + anon_sym_RPAREN, STATE(2038), 1, sym_text_interpolation, - [58880] = 4, + [59065] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3690), 1, sym_name, STATE(2039), 1, sym_text_interpolation, - [58893] = 4, + [59078] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3692), 1, anon_sym_LPAREN, STATE(2040), 1, sym_text_interpolation, - [58906] = 4, + [59091] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3675), 1, - sym_name, + ACTIONS(3694), 1, + anon_sym_LPAREN, STATE(2041), 1, sym_text_interpolation, - [58919] = 4, + [59104] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3677), 1, + ACTIONS(3696), 1, sym_name, STATE(2042), 1, sym_text_interpolation, - [58932] = 4, + [59117] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3248), 1, + ACTIONS(3206), 1, sym_name, STATE(2043), 1, sym_text_interpolation, - [58945] = 4, + [59130] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3679), 1, - sym_name, + ACTIONS(3098), 1, + anon_sym_RPAREN, STATE(2044), 1, sym_text_interpolation, - [58958] = 4, + [59143] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3681), 1, - anon_sym_EQ_GT, + ACTIONS(3698), 1, + sym_name, STATE(2045), 1, sym_text_interpolation, - [58971] = 4, + [59156] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3683), 1, - anon_sym_LPAREN, + ACTIONS(3700), 1, + aux_sym_foreach_statement_token2, STATE(2046), 1, sym_text_interpolation, - [58984] = 4, + [59169] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3685), 1, - aux_sym_foreach_statement_token2, + ACTIONS(3702), 1, + anon_sym_EQ_GT, STATE(2047), 1, sym_text_interpolation, - [58997] = 4, + [59182] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3687), 1, - anon_sym_RPAREN, + ACTIONS(3704), 1, + sym_name, STATE(2048), 1, sym_text_interpolation, - [59010] = 4, + [59195] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3689), 1, - aux_sym_arrow_function_token1, + ACTIONS(3706), 1, + aux_sym_foreach_statement_token2, STATE(2049), 1, sym_text_interpolation, - [59023] = 4, + [59208] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3691), 1, - aux_sym_while_statement_token2, + ACTIONS(3286), 1, + anon_sym_RPAREN, STATE(2050), 1, sym_text_interpolation, - [59036] = 4, + [59221] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3693), 1, + ACTIONS(3708), 1, anon_sym_LPAREN, STATE(2051), 1, sym_text_interpolation, - [59049] = 4, + [59234] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(720), 1, + ACTIONS(3710), 1, anon_sym_RPAREN, STATE(2052), 1, sym_text_interpolation, - [59062] = 4, + [59247] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3712), 1, anon_sym_RPAREN, STATE(2053), 1, sym_text_interpolation, - [59075] = 4, + [59260] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3697), 1, - aux_sym_foreach_statement_token2, + ACTIONS(3714), 1, + aux_sym_arrow_function_token1, STATE(2054), 1, sym_text_interpolation, - [59088] = 4, + [59273] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(762), 1, - anon_sym_SEMI, + ACTIONS(3716), 1, + aux_sym_namespace_use_declaration_token3, STATE(2055), 1, sym_text_interpolation, - [59101] = 4, + [59286] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3699), 1, - anon_sym_COLON_COLON, + ACTIONS(3718), 1, + anon_sym_RPAREN, STATE(2056), 1, sym_text_interpolation, - [59114] = 4, + [59299] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3701), 1, - aux_sym_class_declaration_token1, + ACTIONS(3720), 1, + sym_name, STATE(2057), 1, sym_text_interpolation, - [59127] = 4, + [59312] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3703), 1, + ACTIONS(3722), 1, sym_name, STATE(2058), 1, sym_text_interpolation, - [59140] = 4, + [59325] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3705), 1, - anon_sym_SEMI, + ACTIONS(695), 1, + anon_sym_RBRACK, STATE(2059), 1, sym_text_interpolation, - [59153] = 4, + [59338] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3707), 1, - sym_name, + ACTIONS(3724), 1, + aux_sym_class_declaration_token1, STATE(2060), 1, sym_text_interpolation, - [59166] = 4, + [59351] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(792), 1, - anon_sym_RPAREN, + ACTIONS(767), 1, + anon_sym_SEMI, STATE(2061), 1, sym_text_interpolation, - [59179] = 4, + [59364] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_RPAREN, + ACTIONS(3726), 1, + sym_name, STATE(2062), 1, sym_text_interpolation, - [59192] = 4, + [59377] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3711), 1, - sym_name, + ACTIONS(761), 1, + anon_sym_RPAREN, STATE(2063), 1, sym_text_interpolation, - [59205] = 4, + [59390] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3713), 1, - sym_name, + ACTIONS(3728), 1, + anon_sym_EQ_GT, STATE(2064), 1, sym_text_interpolation, - [59218] = 4, + [59403] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3715), 1, - aux_sym_if_statement_token2, + ACTIONS(3730), 1, + anon_sym_SEMI, STATE(2065), 1, sym_text_interpolation, - [59231] = 4, + [59416] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3717), 1, + ACTIONS(3732), 1, sym_name, STATE(2066), 1, sym_text_interpolation, - [59244] = 4, + [59429] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3719), 1, - aux_sym_if_statement_token2, + ACTIONS(3734), 1, + anon_sym_RPAREN, STATE(2067), 1, sym_text_interpolation, - [59257] = 4, + [59442] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2011), 1, + ACTIONS(3736), 1, anon_sym_RPAREN, STATE(2068), 1, sym_text_interpolation, - [59270] = 4, + [59455] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3236), 1, - anon_sym_RPAREN, + ACTIONS(3738), 1, + sym_name, STATE(2069), 1, sym_text_interpolation, - [59283] = 4, + [59468] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3721), 1, - aux_sym_if_statement_token2, + ACTIONS(3740), 1, + sym_name, STATE(2070), 1, sym_text_interpolation, - [59296] = 4, + [59481] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(778), 1, - anon_sym_RPAREN, + ACTIONS(3742), 1, + anon_sym_EQ_GT, STATE(2071), 1, sym_text_interpolation, - [59309] = 4, + [59494] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3723), 1, - sym_name, + ACTIONS(3744), 1, + aux_sym_if_statement_token2, STATE(2072), 1, sym_text_interpolation, - [59322] = 4, + [59507] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3725), 1, - anon_sym_BSLASH, + ACTIONS(3746), 1, + aux_sym_if_statement_token2, STATE(2073), 1, sym_text_interpolation, - [59335] = 4, + [59520] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3727), 1, - aux_sym_arrow_function_token1, + ACTIONS(2673), 1, + sym_name, STATE(2074), 1, sym_text_interpolation, - [59348] = 4, + [59533] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3729), 1, - sym_name, + ACTIONS(3748), 1, + anon_sym_COLON_COLON, STATE(2075), 1, sym_text_interpolation, - [59361] = 4, + [59546] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3731), 1, - anon_sym_LPAREN, + ACTIONS(3750), 1, + aux_sym_if_statement_token2, STATE(2076), 1, sym_text_interpolation, - [59374] = 4, + [59559] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3733), 1, - anon_sym_LPAREN, + ACTIONS(2067), 1, + anon_sym_RPAREN, STATE(2077), 1, sym_text_interpolation, - [59387] = 4, + [59572] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym_RPAREN, + ACTIONS(3752), 1, + sym_name, STATE(2078), 1, sym_text_interpolation, - [59400] = 4, + [59585] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3252), 1, - sym_name, + ACTIONS(795), 1, + anon_sym_RPAREN, STATE(2079), 1, sym_text_interpolation, - [59413] = 4, + [59598] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_EQ_GT, + ACTIONS(3754), 1, + aux_sym_arrow_function_token1, STATE(2080), 1, sym_text_interpolation, - [59426] = 4, + [59611] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3737), 1, - anon_sym_SEMI, + ACTIONS(3756), 1, + aux_sym_if_statement_token2, STATE(2081), 1, sym_text_interpolation, - [59439] = 4, + [59624] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3739), 1, - aux_sym_if_statement_token2, + ACTIONS(3758), 1, + anon_sym_LPAREN, STATE(2082), 1, sym_text_interpolation, - [59452] = 4, + [59637] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3760), 1, anon_sym_LPAREN, STATE(2083), 1, sym_text_interpolation, - [59465] = 4, + [59650] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3743), 1, - sym_name, + ACTIONS(3762), 1, + anon_sym_RPAREN, STATE(2084), 1, sym_text_interpolation, - [59478] = 4, + [59663] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3745), 1, + ACTIONS(789), 1, anon_sym_SEMI, STATE(2085), 1, sym_text_interpolation, - [59491] = 4, + [59676] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(772), 1, - anon_sym_RPAREN, + ACTIONS(3396), 1, + anon_sym_EQ, STATE(2086), 1, sym_text_interpolation, - [59504] = 4, + [59689] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(766), 1, - anon_sym_SEMI, + ACTIONS(3764), 1, + anon_sym_BSLASH, STATE(2087), 1, sym_text_interpolation, - [59517] = 4, + [59702] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_RPAREN, + ACTIONS(3766), 1, + aux_sym_if_statement_token2, STATE(2088), 1, sym_text_interpolation, - [59530] = 4, + [59715] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_BSLASH, + ACTIONS(3768), 1, + anon_sym_LPAREN, STATE(2089), 1, sym_text_interpolation, - [59543] = 4, + [59728] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3751), 1, - anon_sym_SEMI, + ACTIONS(2085), 1, + anon_sym_RPAREN, STATE(2090), 1, sym_text_interpolation, - [59556] = 4, + [59741] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3753), 1, - anon_sym_BSLASH, + ACTIONS(3770), 1, + anon_sym_SEMI, STATE(2091), 1, sym_text_interpolation, - [59569] = 4, + [59754] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3755), 1, - aux_sym_while_statement_token2, + ACTIONS(3772), 1, + anon_sym_SEMI, STATE(2092), 1, sym_text_interpolation, - [59582] = 4, + [59767] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3757), 1, - anon_sym_LPAREN, + ACTIONS(785), 1, + anon_sym_SEMI, STATE(2093), 1, sym_text_interpolation, - [59595] = 4, + [59780] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_LPAREN, + ACTIONS(3164), 1, + sym_name, STATE(2094), 1, sym_text_interpolation, - [59608] = 4, + [59793] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3761), 1, - anon_sym_SEMI, + ACTIONS(749), 1, + anon_sym_RPAREN, STATE(2095), 1, sym_text_interpolation, - [59621] = 4, + [59806] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3763), 1, - anon_sym_RPAREN, + ACTIONS(3774), 1, + anon_sym_SEMI, STATE(2096), 1, sym_text_interpolation, - [59634] = 4, + [59819] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_LPAREN, + ACTIONS(3776), 1, + sym_name, STATE(2097), 1, sym_text_interpolation, - [59647] = 4, + [59832] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_LPAREN, + ACTIONS(3778), 1, + anon_sym_BSLASH, STATE(2098), 1, sym_text_interpolation, - [59660] = 4, + [59845] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3769), 1, - anon_sym_RPAREN, + ACTIONS(3780), 1, + anon_sym_LPAREN, STATE(2099), 1, sym_text_interpolation, - [59673] = 4, + [59858] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3771), 1, - sym_name, + ACTIONS(3782), 1, + anon_sym_LPAREN, STATE(2100), 1, sym_text_interpolation, - [59686] = 4, + [59871] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3784), 1, anon_sym_SEMI, STATE(2101), 1, sym_text_interpolation, - [59699] = 4, + [59884] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3295), 1, - anon_sym_LBRACE, + ACTIONS(3786), 1, + aux_sym_while_statement_token2, STATE(2102), 1, sym_text_interpolation, - [59712] = 4, + [59897] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3775), 1, + ACTIONS(3788), 1, anon_sym_LPAREN, STATE(2103), 1, sym_text_interpolation, - [59725] = 4, + [59910] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3777), 1, - ts_builtin_sym_end, + ACTIONS(3790), 1, + anon_sym_LPAREN, STATE(2104), 1, sym_text_interpolation, - [59738] = 4, + [59923] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3779), 1, - anon_sym_LPAREN, + ACTIONS(3792), 1, + anon_sym_RPAREN, STATE(2105), 1, sym_text_interpolation, - [59751] = 4, + [59936] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3781), 1, - anon_sym_LPAREN, + ACTIONS(3794), 1, + sym_name, STATE(2106), 1, sym_text_interpolation, - [59764] = 4, + [59949] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(590), 1, + ACTIONS(595), 1, sym_comment, - ACTIONS(3783), 1, - sym_name, + ACTIONS(3796), 1, + anon_sym_SEMI, STATE(2107), 1, sym_text_interpolation, - [59777] = 1, - ACTIONS(3785), 1, + [59962] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(3798), 1, + sym_name, + STATE(2108), 1, + sym_text_interpolation, + [59975] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(3800), 1, + anon_sym_LPAREN, + STATE(2109), 1, + sym_text_interpolation, + [59988] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(3802), 1, + ts_builtin_sym_end, + STATE(2110), 1, + sym_text_interpolation, + [60001] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(3804), 1, + anon_sym_LPAREN, + STATE(2111), 1, + sym_text_interpolation, + [60014] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(3806), 1, + anon_sym_LPAREN, + STATE(2112), 1, + sym_text_interpolation, + [60027] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(595), 1, + sym_comment, + ACTIONS(3808), 1, + anon_sym_BSLASH, + STATE(2113), 1, + sym_text_interpolation, + [60040] = 1, + ACTIONS(3810), 1, ts_builtin_sym_end, - [59781] = 1, - ACTIONS(3787), 1, + [60044] = 1, + ACTIONS(3812), 1, ts_builtin_sym_end, }; static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(532)] = 0, [SMALL_STATE(533)] = 79, - [SMALL_STATE(534)] = 158, - [SMALL_STATE(535)] = 237, + [SMALL_STATE(534)] = 166, + [SMALL_STATE(535)] = 245, [SMALL_STATE(536)] = 324, [SMALL_STATE(537)] = 403, [SMALL_STATE(538)] = 482, @@ -107692,62 +108014,62 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(552)] = 1529, [SMALL_STATE(553)] = 1610, [SMALL_STATE(554)] = 1694, - [SMALL_STATE(555)] = 1829, - [SMALL_STATE(556)] = 1918, - [SMALL_STATE(557)] = 2001, - [SMALL_STATE(558)] = 2080, - [SMALL_STATE(559)] = 2215, - [SMALL_STATE(560)] = 2304, - [SMALL_STATE(561)] = 2387, - [SMALL_STATE(562)] = 2462, - [SMALL_STATE(563)] = 2537, - [SMALL_STATE(564)] = 2612, - [SMALL_STATE(565)] = 2687, - [SMALL_STATE(566)] = 2762, - [SMALL_STATE(567)] = 2897, + [SMALL_STATE(555)] = 1769, + [SMALL_STATE(556)] = 1844, + [SMALL_STATE(557)] = 1919, + [SMALL_STATE(558)] = 2054, + [SMALL_STATE(559)] = 2137, + [SMALL_STATE(560)] = 2212, + [SMALL_STATE(561)] = 2347, + [SMALL_STATE(562)] = 2426, + [SMALL_STATE(563)] = 2561, + [SMALL_STATE(564)] = 2696, + [SMALL_STATE(565)] = 2785, + [SMALL_STATE(566)] = 2868, + [SMALL_STATE(567)] = 2943, [SMALL_STATE(568)] = 3032, [SMALL_STATE(569)] = 3115, - [SMALL_STATE(570)] = 3199, - [SMALL_STATE(571)] = 3269, - [SMALL_STATE(572)] = 3339, - [SMALL_STATE(573)] = 3409, - [SMALL_STATE(574)] = 3497, - [SMALL_STATE(575)] = 3567, - [SMALL_STATE(576)] = 3637, - [SMALL_STATE(577)] = 3707, - [SMALL_STATE(578)] = 3777, - [SMALL_STATE(579)] = 3847, - [SMALL_STATE(580)] = 3917, - [SMALL_STATE(581)] = 3987, - [SMALL_STATE(582)] = 4069, - [SMALL_STATE(583)] = 4139, - [SMALL_STATE(584)] = 4209, - [SMALL_STATE(585)] = 4279, - [SMALL_STATE(586)] = 4349, - [SMALL_STATE(587)] = 4427, + [SMALL_STATE(570)] = 3185, + [SMALL_STATE(571)] = 3255, + [SMALL_STATE(572)] = 3325, + [SMALL_STATE(573)] = 3395, + [SMALL_STATE(574)] = 3465, + [SMALL_STATE(575)] = 3535, + [SMALL_STATE(576)] = 3605, + [SMALL_STATE(577)] = 3687, + [SMALL_STATE(578)] = 3757, + [SMALL_STATE(579)] = 3827, + [SMALL_STATE(580)] = 3911, + [SMALL_STATE(581)] = 3981, + [SMALL_STATE(582)] = 4065, + [SMALL_STATE(583)] = 4135, + [SMALL_STATE(584)] = 4205, + [SMALL_STATE(585)] = 4293, + [SMALL_STATE(586)] = 4363, + [SMALL_STATE(587)] = 4441, [SMALL_STATE(588)] = 4511, [SMALL_STATE(589)] = 4581, [SMALL_STATE(590)] = 4651, - [SMALL_STATE(591)] = 4728, - [SMALL_STATE(592)] = 4805, + [SMALL_STATE(591)] = 4734, + [SMALL_STATE(592)] = 4811, [SMALL_STATE(593)] = 4888, - [SMALL_STATE(594)] = 4965, + [SMALL_STATE(594)] = 4971, [SMALL_STATE(595)] = 5048, [SMALL_STATE(596)] = 5126, - [SMALL_STATE(597)] = 5254, - [SMALL_STATE(598)] = 5382, - [SMALL_STATE(599)] = 5510, - [SMALL_STATE(600)] = 5638, - [SMALL_STATE(601)] = 5720, - [SMALL_STATE(602)] = 5796, + [SMALL_STATE(597)] = 5204, + [SMALL_STATE(598)] = 5280, + [SMALL_STATE(599)] = 5362, + [SMALL_STATE(600)] = 5490, + [SMALL_STATE(601)] = 5618, + [SMALL_STATE(602)] = 5746, [SMALL_STATE(603)] = 5874, - [SMALL_STATE(604)] = 5945, - [SMALL_STATE(605)] = 6012, - [SMALL_STATE(606)] = 6083, - [SMALL_STATE(607)] = 6152, - [SMALL_STATE(608)] = 6223, + [SMALL_STATE(604)] = 5935, + [SMALL_STATE(605)] = 6002, + [SMALL_STATE(606)] = 6071, + [SMALL_STATE(607)] = 6142, + [SMALL_STATE(608)] = 6213, [SMALL_STATE(609)] = 6284, - [SMALL_STATE(610)] = 6348, + [SMALL_STATE(610)] = 6344, [SMALL_STATE(611)] = 6408, [SMALL_STATE(612)] = 6471, [SMALL_STATE(613)] = 6534, @@ -107755,25 +108077,25 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(615)] = 6664, [SMALL_STATE(616)] = 6727, [SMALL_STATE(617)] = 6790, - [SMALL_STATE(618)] = 6855, - [SMALL_STATE(619)] = 6920, - [SMALL_STATE(620)] = 6983, - [SMALL_STATE(621)] = 7044, - [SMALL_STATE(622)] = 7107, - [SMALL_STATE(623)] = 7170, - [SMALL_STATE(624)] = 7231, - [SMALL_STATE(625)] = 7292, - [SMALL_STATE(626)] = 7353, - [SMALL_STATE(627)] = 7416, - [SMALL_STATE(628)] = 7481, - [SMALL_STATE(629)] = 7546, - [SMALL_STATE(630)] = 7609, - [SMALL_STATE(631)] = 7674, - [SMALL_STATE(632)] = 7739, - [SMALL_STATE(633)] = 7800, + [SMALL_STATE(618)] = 6851, + [SMALL_STATE(619)] = 6914, + [SMALL_STATE(620)] = 6975, + [SMALL_STATE(621)] = 7036, + [SMALL_STATE(622)] = 7099, + [SMALL_STATE(623)] = 7162, + [SMALL_STATE(624)] = 7225, + [SMALL_STATE(625)] = 7290, + [SMALL_STATE(626)] = 7351, + [SMALL_STATE(627)] = 7412, + [SMALL_STATE(628)] = 7477, + [SMALL_STATE(629)] = 7538, + [SMALL_STATE(630)] = 7603, + [SMALL_STATE(631)] = 7668, + [SMALL_STATE(632)] = 7733, + [SMALL_STATE(633)] = 7798, [SMALL_STATE(634)] = 7863, - [SMALL_STATE(635)] = 7928, - [SMALL_STATE(636)] = 7991, + [SMALL_STATE(635)] = 7926, + [SMALL_STATE(636)] = 7989, [SMALL_STATE(637)] = 8052, [SMALL_STATE(638)] = 8115, [SMALL_STATE(639)] = 8173, @@ -107782,11 +108104,11 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(642)] = 8347, [SMALL_STATE(643)] = 8405, [SMALL_STATE(644)] = 8463, - [SMALL_STATE(645)] = 8521, - [SMALL_STATE(646)] = 8579, - [SMALL_STATE(647)] = 8637, - [SMALL_STATE(648)] = 8695, - [SMALL_STATE(649)] = 8753, + [SMALL_STATE(645)] = 8523, + [SMALL_STATE(646)] = 8581, + [SMALL_STATE(647)] = 8639, + [SMALL_STATE(648)] = 8697, + [SMALL_STATE(649)] = 8755, [SMALL_STATE(650)] = 8813, [SMALL_STATE(651)] = 8871, [SMALL_STATE(652)] = 8929, @@ -107794,3289 +108116,3306 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(654)] = 9045, [SMALL_STATE(655)] = 9103, [SMALL_STATE(656)] = 9161, - [SMALL_STATE(657)] = 9219, - [SMALL_STATE(658)] = 9277, + [SMALL_STATE(657)] = 9221, + [SMALL_STATE(658)] = 9279, [SMALL_STATE(659)] = 9337, [SMALL_STATE(660)] = 9395, [SMALL_STATE(661)] = 9453, [SMALL_STATE(662)] = 9511, - [SMALL_STATE(663)] = 9570, - [SMALL_STATE(664)] = 9637, - [SMALL_STATE(665)] = 9704, - [SMALL_STATE(666)] = 9763, - [SMALL_STATE(667)] = 9824, - [SMALL_STATE(668)] = 9889, - [SMALL_STATE(669)] = 9956, - [SMALL_STATE(670)] = 10013, - [SMALL_STATE(671)] = 10076, - [SMALL_STATE(672)] = 10133, - [SMALL_STATE(673)] = 10192, - [SMALL_STATE(674)] = 10251, - [SMALL_STATE(675)] = 10319, - [SMALL_STATE(676)] = 10419, - [SMALL_STATE(677)] = 10487, - [SMALL_STATE(678)] = 10555, - [SMALL_STATE(679)] = 10655, - [SMALL_STATE(680)] = 10714, - [SMALL_STATE(681)] = 10771, - [SMALL_STATE(682)] = 10830, - [SMALL_STATE(683)] = 10889, - [SMALL_STATE(684)] = 10950, - [SMALL_STATE(685)] = 11005, - [SMALL_STATE(686)] = 11062, - [SMALL_STATE(687)] = 11121, - [SMALL_STATE(688)] = 11180, - [SMALL_STATE(689)] = 11235, - [SMALL_STATE(690)] = 11292, - [SMALL_STATE(691)] = 11351, - [SMALL_STATE(692)] = 11408, - [SMALL_STATE(693)] = 11467, - [SMALL_STATE(694)] = 11528, - [SMALL_STATE(695)] = 11587, - [SMALL_STATE(696)] = 11686, - [SMALL_STATE(697)] = 11745, - [SMALL_STATE(698)] = 11804, - [SMALL_STATE(699)] = 11865, - [SMALL_STATE(700)] = 11926, - [SMALL_STATE(701)] = 11981, - [SMALL_STATE(702)] = 12080, - [SMALL_STATE(703)] = 12135, - [SMALL_STATE(704)] = 12196, - [SMALL_STATE(705)] = 12253, - [SMALL_STATE(706)] = 12310, - [SMALL_STATE(707)] = 12369, - [SMALL_STATE(708)] = 12430, - [SMALL_STATE(709)] = 12491, - [SMALL_STATE(710)] = 12552, - [SMALL_STATE(711)] = 12613, - [SMALL_STATE(712)] = 12672, - [SMALL_STATE(713)] = 12729, - [SMALL_STATE(714)] = 12825, - [SMALL_STATE(715)] = 12879, - [SMALL_STATE(716)] = 12935, - [SMALL_STATE(717)] = 12989, - [SMALL_STATE(718)] = 13043, - [SMALL_STATE(719)] = 13097, - [SMALL_STATE(720)] = 13193, - [SMALL_STATE(721)] = 13247, - [SMALL_STATE(722)] = 13301, - [SMALL_STATE(723)] = 13355, - [SMALL_STATE(724)] = 13409, - [SMALL_STATE(725)] = 13463, - [SMALL_STATE(726)] = 13521, - [SMALL_STATE(727)] = 13575, - [SMALL_STATE(728)] = 13629, - [SMALL_STATE(729)] = 13683, - [SMALL_STATE(730)] = 13737, - [SMALL_STATE(731)] = 13791, - [SMALL_STATE(732)] = 13845, - [SMALL_STATE(733)] = 13899, - [SMALL_STATE(734)] = 13953, - [SMALL_STATE(735)] = 14007, - [SMALL_STATE(736)] = 14061, - [SMALL_STATE(737)] = 14117, - [SMALL_STATE(738)] = 14171, - [SMALL_STATE(739)] = 14227, - [SMALL_STATE(740)] = 14281, - [SMALL_STATE(741)] = 14335, - [SMALL_STATE(742)] = 14431, - [SMALL_STATE(743)] = 14527, - [SMALL_STATE(744)] = 14582, - [SMALL_STATE(745)] = 14637, - [SMALL_STATE(746)] = 14692, - [SMALL_STATE(747)] = 14785, - [SMALL_STATE(748)] = 14840, - [SMALL_STATE(749)] = 14892, - [SMALL_STATE(750)] = 14944, - [SMALL_STATE(751)] = 14996, - [SMALL_STATE(752)] = 15048, - [SMALL_STATE(753)] = 15100, - [SMALL_STATE(754)] = 15152, - [SMALL_STATE(755)] = 15204, - [SMALL_STATE(756)] = 15258, - [SMALL_STATE(757)] = 15310, - [SMALL_STATE(758)] = 15362, - [SMALL_STATE(759)] = 15414, - [SMALL_STATE(760)] = 15466, - [SMALL_STATE(761)] = 15518, - [SMALL_STATE(762)] = 15570, - [SMALL_STATE(763)] = 15660, - [SMALL_STATE(764)] = 15712, - [SMALL_STATE(765)] = 15764, - [SMALL_STATE(766)] = 15816, - [SMALL_STATE(767)] = 15868, - [SMALL_STATE(768)] = 15920, - [SMALL_STATE(769)] = 15972, - [SMALL_STATE(770)] = 16024, - [SMALL_STATE(771)] = 16076, - [SMALL_STATE(772)] = 16128, - [SMALL_STATE(773)] = 16180, - [SMALL_STATE(774)] = 16270, - [SMALL_STATE(775)] = 16322, - [SMALL_STATE(776)] = 16374, - [SMALL_STATE(777)] = 16426, - [SMALL_STATE(778)] = 16478, - [SMALL_STATE(779)] = 16530, - [SMALL_STATE(780)] = 16582, - [SMALL_STATE(781)] = 16634, - [SMALL_STATE(782)] = 16686, - [SMALL_STATE(783)] = 16738, - [SMALL_STATE(784)] = 16826, - [SMALL_STATE(785)] = 16878, - [SMALL_STATE(786)] = 16930, - [SMALL_STATE(787)] = 16981, - [SMALL_STATE(788)] = 17032, - [SMALL_STATE(789)] = 17106, - [SMALL_STATE(790)] = 17164, - [SMALL_STATE(791)] = 17220, - [SMALL_STATE(792)] = 17306, - [SMALL_STATE(793)] = 17358, - [SMALL_STATE(794)] = 17428, - [SMALL_STATE(795)] = 17492, - [SMALL_STATE(796)] = 17572, - [SMALL_STATE(797)] = 17632, - [SMALL_STATE(798)] = 17718, - [SMALL_STATE(799)] = 17798, - [SMALL_STATE(800)] = 17884, - [SMALL_STATE(801)] = 17970, - [SMALL_STATE(802)] = 18046, + [SMALL_STATE(663)] = 9568, + [SMALL_STATE(664)] = 9633, + [SMALL_STATE(665)] = 9690, + [SMALL_STATE(666)] = 9793, + [SMALL_STATE(667)] = 9852, + [SMALL_STATE(668)] = 9919, + [SMALL_STATE(669)] = 9978, + [SMALL_STATE(670)] = 10037, + [SMALL_STATE(671)] = 10096, + [SMALL_STATE(672)] = 10163, + [SMALL_STATE(673)] = 10226, + [SMALL_STATE(674)] = 10293, + [SMALL_STATE(675)] = 10354, + [SMALL_STATE(676)] = 10457, + [SMALL_STATE(677)] = 10525, + [SMALL_STATE(678)] = 10593, + [SMALL_STATE(679)] = 10661, + [SMALL_STATE(680)] = 10720, + [SMALL_STATE(681)] = 10777, + [SMALL_STATE(682)] = 10836, + [SMALL_STATE(683)] = 10895, + [SMALL_STATE(684)] = 10954, + [SMALL_STATE(685)] = 11013, + [SMALL_STATE(686)] = 11068, + [SMALL_STATE(687)] = 11123, + [SMALL_STATE(688)] = 11182, + [SMALL_STATE(689)] = 11241, + [SMALL_STATE(690)] = 11300, + [SMALL_STATE(691)] = 11359, + [SMALL_STATE(692)] = 11418, + [SMALL_STATE(693)] = 11479, + [SMALL_STATE(694)] = 11538, + [SMALL_STATE(695)] = 11599, + [SMALL_STATE(696)] = 11656, + [SMALL_STATE(697)] = 11713, + [SMALL_STATE(698)] = 11768, + [SMALL_STATE(699)] = 11829, + [SMALL_STATE(700)] = 11890, + [SMALL_STATE(701)] = 11947, + [SMALL_STATE(702)] = 12046, + [SMALL_STATE(703)] = 12107, + [SMALL_STATE(704)] = 12206, + [SMALL_STATE(705)] = 12263, + [SMALL_STATE(706)] = 12324, + [SMALL_STATE(707)] = 12383, + [SMALL_STATE(708)] = 12444, + [SMALL_STATE(709)] = 12501, + [SMALL_STATE(710)] = 12556, + [SMALL_STATE(711)] = 12617, + [SMALL_STATE(712)] = 12674, + [SMALL_STATE(713)] = 12735, + [SMALL_STATE(714)] = 12831, + [SMALL_STATE(715)] = 12927, + [SMALL_STATE(716)] = 12981, + [SMALL_STATE(717)] = 13035, + [SMALL_STATE(718)] = 13089, + [SMALL_STATE(719)] = 13143, + [SMALL_STATE(720)] = 13197, + [SMALL_STATE(721)] = 13293, + [SMALL_STATE(722)] = 13347, + [SMALL_STATE(723)] = 13401, + [SMALL_STATE(724)] = 13455, + [SMALL_STATE(725)] = 13509, + [SMALL_STATE(726)] = 13563, + [SMALL_STATE(727)] = 13617, + [SMALL_STATE(728)] = 13671, + [SMALL_STATE(729)] = 13725, + [SMALL_STATE(730)] = 13781, + [SMALL_STATE(731)] = 13835, + [SMALL_STATE(732)] = 13893, + [SMALL_STATE(733)] = 13947, + [SMALL_STATE(734)] = 14001, + [SMALL_STATE(735)] = 14055, + [SMALL_STATE(736)] = 14109, + [SMALL_STATE(737)] = 14163, + [SMALL_STATE(738)] = 14259, + [SMALL_STATE(739)] = 14313, + [SMALL_STATE(740)] = 14369, + [SMALL_STATE(741)] = 14423, + [SMALL_STATE(742)] = 14479, + [SMALL_STATE(743)] = 14533, + [SMALL_STATE(744)] = 14588, + [SMALL_STATE(745)] = 14681, + [SMALL_STATE(746)] = 14736, + [SMALL_STATE(747)] = 14791, + [SMALL_STATE(748)] = 14846, + [SMALL_STATE(749)] = 14898, + [SMALL_STATE(750)] = 14950, + [SMALL_STATE(751)] = 15002, + [SMALL_STATE(752)] = 15054, + [SMALL_STATE(753)] = 15106, + [SMALL_STATE(754)] = 15158, + [SMALL_STATE(755)] = 15248, + [SMALL_STATE(756)] = 15302, + [SMALL_STATE(757)] = 15354, + [SMALL_STATE(758)] = 15406, + [SMALL_STATE(759)] = 15458, + [SMALL_STATE(760)] = 15510, + [SMALL_STATE(761)] = 15562, + [SMALL_STATE(762)] = 15614, + [SMALL_STATE(763)] = 15666, + [SMALL_STATE(764)] = 15718, + [SMALL_STATE(765)] = 15770, + [SMALL_STATE(766)] = 15822, + [SMALL_STATE(767)] = 15874, + [SMALL_STATE(768)] = 15926, + [SMALL_STATE(769)] = 15978, + [SMALL_STATE(770)] = 16030, + [SMALL_STATE(771)] = 16082, + [SMALL_STATE(772)] = 16134, + [SMALL_STATE(773)] = 16186, + [SMALL_STATE(774)] = 16238, + [SMALL_STATE(775)] = 16290, + [SMALL_STATE(776)] = 16342, + [SMALL_STATE(777)] = 16394, + [SMALL_STATE(778)] = 16484, + [SMALL_STATE(779)] = 16536, + [SMALL_STATE(780)] = 16624, + [SMALL_STATE(781)] = 16676, + [SMALL_STATE(782)] = 16728, + [SMALL_STATE(783)] = 16780, + [SMALL_STATE(784)] = 16832, + [SMALL_STATE(785)] = 16884, + [SMALL_STATE(786)] = 16936, + [SMALL_STATE(787)] = 16987, + [SMALL_STATE(788)] = 17038, + [SMALL_STATE(789)] = 17124, + [SMALL_STATE(790)] = 17212, + [SMALL_STATE(791)] = 17292, + [SMALL_STATE(792)] = 17348, + [SMALL_STATE(793)] = 17406, + [SMALL_STATE(794)] = 17466, + [SMALL_STATE(795)] = 17530, + [SMALL_STATE(796)] = 17600, + [SMALL_STATE(797)] = 17674, + [SMALL_STATE(798)] = 17750, + [SMALL_STATE(799)] = 17832, + [SMALL_STATE(800)] = 17916, + [SMALL_STATE(801)] = 17968, + [SMALL_STATE(802)] = 18048, [SMALL_STATE(803)] = 18128, - [SMALL_STATE(804)] = 18212, - [SMALL_STATE(805)] = 18298, - [SMALL_STATE(806)] = 18384, - [SMALL_STATE(807)] = 18470, - [SMALL_STATE(808)] = 18550, - [SMALL_STATE(809)] = 18630, - [SMALL_STATE(810)] = 18684, - [SMALL_STATE(811)] = 18756, - [SMALL_STATE(812)] = 18824, - [SMALL_STATE(813)] = 18910, + [SMALL_STATE(804)] = 18182, + [SMALL_STATE(805)] = 18254, + [SMALL_STATE(806)] = 18322, + [SMALL_STATE(807)] = 18408, + [SMALL_STATE(808)] = 18494, + [SMALL_STATE(809)] = 18574, + [SMALL_STATE(810)] = 18654, + [SMALL_STATE(811)] = 18740, + [SMALL_STATE(812)] = 18826, + [SMALL_STATE(813)] = 18912, [SMALL_STATE(814)] = 18998, - [SMALL_STATE(815)] = 19086, - [SMALL_STATE(816)] = 19172, + [SMALL_STATE(815)] = 19084, + [SMALL_STATE(816)] = 19170, [SMALL_STATE(817)] = 19258, - [SMALL_STATE(818)] = 19344, - [SMALL_STATE(819)] = 19430, - [SMALL_STATE(820)] = 19482, - [SMALL_STATE(821)] = 19568, - [SMALL_STATE(822)] = 19654, + [SMALL_STATE(818)] = 19338, + [SMALL_STATE(819)] = 19424, + [SMALL_STATE(820)] = 19510, + [SMALL_STATE(821)] = 19596, + [SMALL_STATE(822)] = 19682, [SMALL_STATE(823)] = 19734, - [SMALL_STATE(824)] = 19814, - [SMALL_STATE(825)] = 19900, - [SMALL_STATE(826)] = 19988, - [SMALL_STATE(827)] = 20074, - [SMALL_STATE(828)] = 20154, - [SMALL_STATE(829)] = 20240, - [SMALL_STATE(830)] = 20326, - [SMALL_STATE(831)] = 20411, - [SMALL_STATE(832)] = 20490, - [SMALL_STATE(833)] = 20575, - [SMALL_STATE(834)] = 20660, - [SMALL_STATE(835)] = 20745, - [SMALL_STATE(836)] = 20830, - [SMALL_STATE(837)] = 20909, - [SMALL_STATE(838)] = 20994, - [SMALL_STATE(839)] = 21079, - [SMALL_STATE(840)] = 21164, - [SMALL_STATE(841)] = 21249, - [SMALL_STATE(842)] = 21334, - [SMALL_STATE(843)] = 21419, - [SMALL_STATE(844)] = 21498, - [SMALL_STATE(845)] = 21583, - [SMALL_STATE(846)] = 21668, - [SMALL_STATE(847)] = 21747, - [SMALL_STATE(848)] = 21832, - [SMALL_STATE(849)] = 21917, - [SMALL_STATE(850)] = 21988, - [SMALL_STATE(851)] = 22073, - [SMALL_STATE(852)] = 22158, - [SMALL_STATE(853)] = 22237, - [SMALL_STATE(854)] = 22288, - [SMALL_STATE(855)] = 22375, - [SMALL_STATE(856)] = 22430, - [SMALL_STATE(857)] = 22487, - [SMALL_STATE(858)] = 22546, - [SMALL_STATE(859)] = 22609, - [SMALL_STATE(860)] = 22678, - [SMALL_STATE(861)] = 22729, - [SMALL_STATE(862)] = 22814, - [SMALL_STATE(863)] = 22899, - [SMALL_STATE(864)] = 22972, - [SMALL_STATE(865)] = 23039, - [SMALL_STATE(866)] = 23124, - [SMALL_STATE(867)] = 23199, - [SMALL_STATE(868)] = 23280, - [SMALL_STATE(869)] = 23363, - [SMALL_STATE(870)] = 23442, - [SMALL_STATE(871)] = 23521, - [SMALL_STATE(872)] = 23574, - [SMALL_STATE(873)] = 23659, - [SMALL_STATE(874)] = 23707, - [SMALL_STATE(875)] = 23755, - [SMALL_STATE(876)] = 23803, - [SMALL_STATE(877)] = 23877, - [SMALL_STATE(878)] = 23959, - [SMALL_STATE(879)] = 24007, - [SMALL_STATE(880)] = 24055, - [SMALL_STATE(881)] = 24133, - [SMALL_STATE(882)] = 24211, - [SMALL_STATE(883)] = 24259, - [SMALL_STATE(884)] = 24343, - [SMALL_STATE(885)] = 24391, - [SMALL_STATE(886)] = 24443, - [SMALL_STATE(887)] = 24491, - [SMALL_STATE(888)] = 24561, - [SMALL_STATE(889)] = 24609, - [SMALL_STATE(890)] = 24657, - [SMALL_STATE(891)] = 24729, - [SMALL_STATE(892)] = 24813, - [SMALL_STATE(893)] = 24881, - [SMALL_STATE(894)] = 24965, - [SMALL_STATE(895)] = 25013, - [SMALL_STATE(896)] = 25093, - [SMALL_STATE(897)] = 25175, - [SMALL_STATE(898)] = 25259, - [SMALL_STATE(899)] = 25307, - [SMALL_STATE(900)] = 25373, - [SMALL_STATE(901)] = 25421, - [SMALL_STATE(902)] = 25469, - [SMALL_STATE(903)] = 25517, - [SMALL_STATE(904)] = 25565, - [SMALL_STATE(905)] = 25613, - [SMALL_STATE(906)] = 25661, - [SMALL_STATE(907)] = 25745, - [SMALL_STATE(908)] = 25827, - [SMALL_STATE(909)] = 25905, - [SMALL_STATE(910)] = 25989, - [SMALL_STATE(911)] = 26075, - [SMALL_STATE(912)] = 26153, - [SMALL_STATE(913)] = 26201, - [SMALL_STATE(914)] = 26249, - [SMALL_STATE(915)] = 26333, - [SMALL_STATE(916)] = 26417, - [SMALL_STATE(917)] = 26501, - [SMALL_STATE(918)] = 26585, - [SMALL_STATE(919)] = 26667, - [SMALL_STATE(920)] = 26751, - [SMALL_STATE(921)] = 26833, - [SMALL_STATE(922)] = 26881, - [SMALL_STATE(923)] = 26929, - [SMALL_STATE(924)] = 26977, - [SMALL_STATE(925)] = 27061, - [SMALL_STATE(926)] = 27143, - [SMALL_STATE(927)] = 27191, - [SMALL_STATE(928)] = 27241, - [SMALL_STATE(929)] = 27319, - [SMALL_STATE(930)] = 27367, - [SMALL_STATE(931)] = 27445, - [SMALL_STATE(932)] = 27529, - [SMALL_STATE(933)] = 27611, - [SMALL_STATE(934)] = 27693, - [SMALL_STATE(935)] = 27777, - [SMALL_STATE(936)] = 27861, - [SMALL_STATE(937)] = 27909, - [SMALL_STATE(938)] = 27991, - [SMALL_STATE(939)] = 28049, - [SMALL_STATE(940)] = 28127, - [SMALL_STATE(941)] = 28211, - [SMALL_STATE(942)] = 28267, - [SMALL_STATE(943)] = 28315, - [SMALL_STATE(944)] = 28363, - [SMALL_STATE(945)] = 28417, - [SMALL_STATE(946)] = 28479, - [SMALL_STATE(947)] = 28529, - [SMALL_STATE(948)] = 28611, - [SMALL_STATE(949)] = 28693, - [SMALL_STATE(950)] = 28777, - [SMALL_STATE(951)] = 28861, - [SMALL_STATE(952)] = 28911, - [SMALL_STATE(953)] = 28959, - [SMALL_STATE(954)] = 29007, - [SMALL_STATE(955)] = 29055, - [SMALL_STATE(956)] = 29103, - [SMALL_STATE(957)] = 29185, - [SMALL_STATE(958)] = 29233, - [SMALL_STATE(959)] = 29281, - [SMALL_STATE(960)] = 29329, - [SMALL_STATE(961)] = 29377, - [SMALL_STATE(962)] = 29459, - [SMALL_STATE(963)] = 29542, - [SMALL_STATE(964)] = 29625, - [SMALL_STATE(965)] = 29708, - [SMALL_STATE(966)] = 29791, - [SMALL_STATE(967)] = 29874, - [SMALL_STATE(968)] = 29957, - [SMALL_STATE(969)] = 30040, - [SMALL_STATE(970)] = 30117, - [SMALL_STATE(971)] = 30200, - [SMALL_STATE(972)] = 30277, - [SMALL_STATE(973)] = 30360, - [SMALL_STATE(974)] = 30437, - [SMALL_STATE(975)] = 30514, - [SMALL_STATE(976)] = 30563, - [SMALL_STATE(977)] = 30616, - [SMALL_STATE(978)] = 30671, - [SMALL_STATE(979)] = 30756, - [SMALL_STATE(980)] = 30813, - [SMALL_STATE(981)] = 30896, - [SMALL_STATE(982)] = 30957, - [SMALL_STATE(983)] = 31040, - [SMALL_STATE(984)] = 31107, - [SMALL_STATE(985)] = 31190, - [SMALL_STATE(986)] = 31273, - [SMALL_STATE(987)] = 31344, - [SMALL_STATE(988)] = 31417, - [SMALL_STATE(989)] = 31500, - [SMALL_STATE(990)] = 31579, - [SMALL_STATE(991)] = 31660, - [SMALL_STATE(992)] = 31737, - [SMALL_STATE(993)] = 31820, - [SMALL_STATE(994)] = 31903, - [SMALL_STATE(995)] = 31952, - [SMALL_STATE(996)] = 32029, - [SMALL_STATE(997)] = 32106, - [SMALL_STATE(998)] = 32157, - [SMALL_STATE(999)] = 32226, - [SMALL_STATE(1000)] = 32291, - [SMALL_STATE(1001)] = 32374, - [SMALL_STATE(1002)] = 32457, - [SMALL_STATE(1003)] = 32540, - [SMALL_STATE(1004)] = 32623, - [SMALL_STATE(1005)] = 32704, - [SMALL_STATE(1006)] = 32785, - [SMALL_STATE(1007)] = 32868, - [SMALL_STATE(1008)] = 32953, - [SMALL_STATE(1009)] = 33034, - [SMALL_STATE(1010)] = 33114, - [SMALL_STATE(1011)] = 33194, - [SMALL_STATE(1012)] = 33274, - [SMALL_STATE(1013)] = 33354, - [SMALL_STATE(1014)] = 33436, - [SMALL_STATE(1015)] = 33516, - [SMALL_STATE(1016)] = 33596, - [SMALL_STATE(1017)] = 33678, - [SMALL_STATE(1018)] = 33758, - [SMALL_STATE(1019)] = 33840, - [SMALL_STATE(1020)] = 33920, - [SMALL_STATE(1021)] = 34000, - [SMALL_STATE(1022)] = 34080, - [SMALL_STATE(1023)] = 34160, - [SMALL_STATE(1024)] = 34242, - [SMALL_STATE(1025)] = 34322, - [SMALL_STATE(1026)] = 34404, - [SMALL_STATE(1027)] = 34484, - [SMALL_STATE(1028)] = 34564, - [SMALL_STATE(1029)] = 34644, - [SMALL_STATE(1030)] = 34724, - [SMALL_STATE(1031)] = 34804, - [SMALL_STATE(1032)] = 34884, - [SMALL_STATE(1033)] = 34966, - [SMALL_STATE(1034)] = 35046, - [SMALL_STATE(1035)] = 35126, - [SMALL_STATE(1036)] = 35208, - [SMALL_STATE(1037)] = 35288, - [SMALL_STATE(1038)] = 35368, - [SMALL_STATE(1039)] = 35448, - [SMALL_STATE(1040)] = 35504, - [SMALL_STATE(1041)] = 35584, - [SMALL_STATE(1042)] = 35666, - [SMALL_STATE(1043)] = 35745, - [SMALL_STATE(1044)] = 35824, - [SMALL_STATE(1045)] = 35903, - [SMALL_STATE(1046)] = 35982, - [SMALL_STATE(1047)] = 36061, - [SMALL_STATE(1048)] = 36140, - [SMALL_STATE(1049)] = 36219, - [SMALL_STATE(1050)] = 36298, - [SMALL_STATE(1051)] = 36377, - [SMALL_STATE(1052)] = 36456, - [SMALL_STATE(1053)] = 36535, - [SMALL_STATE(1054)] = 36614, - [SMALL_STATE(1055)] = 36693, - [SMALL_STATE(1056)] = 36772, - [SMALL_STATE(1057)] = 36851, - [SMALL_STATE(1058)] = 36930, - [SMALL_STATE(1059)] = 37009, - [SMALL_STATE(1060)] = 37088, - [SMALL_STATE(1061)] = 37167, - [SMALL_STATE(1062)] = 37246, - [SMALL_STATE(1063)] = 37325, - [SMALL_STATE(1064)] = 37404, - [SMALL_STATE(1065)] = 37483, - [SMALL_STATE(1066)] = 37562, - [SMALL_STATE(1067)] = 37641, - [SMALL_STATE(1068)] = 37720, - [SMALL_STATE(1069)] = 37799, - [SMALL_STATE(1070)] = 37878, - [SMALL_STATE(1071)] = 37957, - [SMALL_STATE(1072)] = 38036, - [SMALL_STATE(1073)] = 38115, - [SMALL_STATE(1074)] = 38194, - [SMALL_STATE(1075)] = 38273, - [SMALL_STATE(1076)] = 38352, - [SMALL_STATE(1077)] = 38431, - [SMALL_STATE(1078)] = 38510, - [SMALL_STATE(1079)] = 38589, - [SMALL_STATE(1080)] = 38668, - [SMALL_STATE(1081)] = 38747, - [SMALL_STATE(1082)] = 38818, - [SMALL_STATE(1083)] = 38897, - [SMALL_STATE(1084)] = 38976, - [SMALL_STATE(1085)] = 39055, - [SMALL_STATE(1086)] = 39134, - [SMALL_STATE(1087)] = 39213, - [SMALL_STATE(1088)] = 39292, - [SMALL_STATE(1089)] = 39371, - [SMALL_STATE(1090)] = 39450, - [SMALL_STATE(1091)] = 39529, - [SMALL_STATE(1092)] = 39608, - [SMALL_STATE(1093)] = 39687, - [SMALL_STATE(1094)] = 39766, - [SMALL_STATE(1095)] = 39845, - [SMALL_STATE(1096)] = 39924, - [SMALL_STATE(1097)] = 40001, - [SMALL_STATE(1098)] = 40080, - [SMALL_STATE(1099)] = 40159, + [SMALL_STATE(824)] = 19820, + [SMALL_STATE(825)] = 19908, + [SMALL_STATE(826)] = 19994, + [SMALL_STATE(827)] = 20080, + [SMALL_STATE(828)] = 20166, + [SMALL_STATE(829)] = 20246, + [SMALL_STATE(830)] = 20332, + [SMALL_STATE(831)] = 20417, + [SMALL_STATE(832)] = 20502, + [SMALL_STATE(833)] = 20571, + [SMALL_STATE(834)] = 20622, + [SMALL_STATE(835)] = 20707, + [SMALL_STATE(836)] = 20792, + [SMALL_STATE(837)] = 20877, + [SMALL_STATE(838)] = 20962, + [SMALL_STATE(839)] = 21047, + [SMALL_STATE(840)] = 21132, + [SMALL_STATE(841)] = 21217, + [SMALL_STATE(842)] = 21302, + [SMALL_STATE(843)] = 21387, + [SMALL_STATE(844)] = 21472, + [SMALL_STATE(845)] = 21545, + [SMALL_STATE(846)] = 21620, + [SMALL_STATE(847)] = 21705, + [SMALL_STATE(848)] = 21790, + [SMALL_STATE(849)] = 21871, + [SMALL_STATE(850)] = 21942, + [SMALL_STATE(851)] = 22021, + [SMALL_STATE(852)] = 22106, + [SMALL_STATE(853)] = 22191, + [SMALL_STATE(854)] = 22258, + [SMALL_STATE(855)] = 22341, + [SMALL_STATE(856)] = 22426, + [SMALL_STATE(857)] = 22513, + [SMALL_STATE(858)] = 22592, + [SMALL_STATE(859)] = 22677, + [SMALL_STATE(860)] = 22756, + [SMALL_STATE(861)] = 22841, + [SMALL_STATE(862)] = 22920, + [SMALL_STATE(863)] = 22971, + [SMALL_STATE(864)] = 23050, + [SMALL_STATE(865)] = 23105, + [SMALL_STATE(866)] = 23190, + [SMALL_STATE(867)] = 23247, + [SMALL_STATE(868)] = 23332, + [SMALL_STATE(869)] = 23411, + [SMALL_STATE(870)] = 23470, + [SMALL_STATE(871)] = 23549, + [SMALL_STATE(872)] = 23602, + [SMALL_STATE(873)] = 23665, + [SMALL_STATE(874)] = 23749, + [SMALL_STATE(875)] = 23797, + [SMALL_STATE(876)] = 23845, + [SMALL_STATE(877)] = 23929, + [SMALL_STATE(878)] = 24013, + [SMALL_STATE(879)] = 24097, + [SMALL_STATE(880)] = 24181, + [SMALL_STATE(881)] = 24229, + [SMALL_STATE(882)] = 24277, + [SMALL_STATE(883)] = 24343, + [SMALL_STATE(884)] = 24427, + [SMALL_STATE(885)] = 24497, + [SMALL_STATE(886)] = 24545, + [SMALL_STATE(887)] = 24593, + [SMALL_STATE(888)] = 24641, + [SMALL_STATE(889)] = 24725, + [SMALL_STATE(890)] = 24777, + [SMALL_STATE(891)] = 24827, + [SMALL_STATE(892)] = 24875, + [SMALL_STATE(893)] = 24953, + [SMALL_STATE(894)] = 25003, + [SMALL_STATE(895)] = 25051, + [SMALL_STATE(896)] = 25133, + [SMALL_STATE(897)] = 25215, + [SMALL_STATE(898)] = 25263, + [SMALL_STATE(899)] = 25311, + [SMALL_STATE(900)] = 25393, + [SMALL_STATE(901)] = 25477, + [SMALL_STATE(902)] = 25525, + [SMALL_STATE(903)] = 25573, + [SMALL_STATE(904)] = 25655, + [SMALL_STATE(905)] = 25733, + [SMALL_STATE(906)] = 25781, + [SMALL_STATE(907)] = 25829, + [SMALL_STATE(908)] = 25909, + [SMALL_STATE(909)] = 25983, + [SMALL_STATE(910)] = 26055, + [SMALL_STATE(911)] = 26137, + [SMALL_STATE(912)] = 26219, + [SMALL_STATE(913)] = 26301, + [SMALL_STATE(914)] = 26349, + [SMALL_STATE(915)] = 26417, + [SMALL_STATE(916)] = 26499, + [SMALL_STATE(917)] = 26583, + [SMALL_STATE(918)] = 26631, + [SMALL_STATE(919)] = 26679, + [SMALL_STATE(920)] = 26727, + [SMALL_STATE(921)] = 26809, + [SMALL_STATE(922)] = 26893, + [SMALL_STATE(923)] = 26941, + [SMALL_STATE(924)] = 27025, + [SMALL_STATE(925)] = 27073, + [SMALL_STATE(926)] = 27151, + [SMALL_STATE(927)] = 27199, + [SMALL_STATE(928)] = 27277, + [SMALL_STATE(929)] = 27355, + [SMALL_STATE(930)] = 27403, + [SMALL_STATE(931)] = 27451, + [SMALL_STATE(932)] = 27535, + [SMALL_STATE(933)] = 27583, + [SMALL_STATE(934)] = 27661, + [SMALL_STATE(935)] = 27711, + [SMALL_STATE(936)] = 27759, + [SMALL_STATE(937)] = 27807, + [SMALL_STATE(938)] = 27893, + [SMALL_STATE(939)] = 27955, + [SMALL_STATE(940)] = 28013, + [SMALL_STATE(941)] = 28097, + [SMALL_STATE(942)] = 28153, + [SMALL_STATE(943)] = 28201, + [SMALL_STATE(944)] = 28249, + [SMALL_STATE(945)] = 28297, + [SMALL_STATE(946)] = 28381, + [SMALL_STATE(947)] = 28429, + [SMALL_STATE(948)] = 28477, + [SMALL_STATE(949)] = 28561, + [SMALL_STATE(950)] = 28645, + [SMALL_STATE(951)] = 28699, + [SMALL_STATE(952)] = 28747, + [SMALL_STATE(953)] = 28829, + [SMALL_STATE(954)] = 28913, + [SMALL_STATE(955)] = 28961, + [SMALL_STATE(956)] = 29045, + [SMALL_STATE(957)] = 29127, + [SMALL_STATE(958)] = 29175, + [SMALL_STATE(959)] = 29223, + [SMALL_STATE(960)] = 29305, + [SMALL_STATE(961)] = 29387, + [SMALL_STATE(962)] = 29465, + [SMALL_STATE(963)] = 29544, + [SMALL_STATE(964)] = 29627, + [SMALL_STATE(965)] = 29710, + [SMALL_STATE(966)] = 29759, + [SMALL_STATE(967)] = 29842, + [SMALL_STATE(968)] = 29925, + [SMALL_STATE(969)] = 30008, + [SMALL_STATE(970)] = 30073, + [SMALL_STATE(971)] = 30156, + [SMALL_STATE(972)] = 30225, + [SMALL_STATE(973)] = 30308, + [SMALL_STATE(974)] = 30359, + [SMALL_STATE(975)] = 30442, + [SMALL_STATE(976)] = 30525, + [SMALL_STATE(977)] = 30608, + [SMALL_STATE(978)] = 30685, + [SMALL_STATE(979)] = 30768, + [SMALL_STATE(980)] = 30845, + [SMALL_STATE(981)] = 30928, + [SMALL_STATE(982)] = 30981, + [SMALL_STATE(983)] = 31064, + [SMALL_STATE(984)] = 31141, + [SMALL_STATE(985)] = 31218, + [SMALL_STATE(986)] = 31279, + [SMALL_STATE(987)] = 31362, + [SMALL_STATE(988)] = 31419, + [SMALL_STATE(989)] = 31496, + [SMALL_STATE(990)] = 31577, + [SMALL_STATE(991)] = 31632, + [SMALL_STATE(992)] = 31699, + [SMALL_STATE(993)] = 31782, + [SMALL_STATE(994)] = 31867, + [SMALL_STATE(995)] = 31950, + [SMALL_STATE(996)] = 32033, + [SMALL_STATE(997)] = 32110, + [SMALL_STATE(998)] = 32187, + [SMALL_STATE(999)] = 32260, + [SMALL_STATE(1000)] = 32331, + [SMALL_STATE(1001)] = 32414, + [SMALL_STATE(1002)] = 32463, + [SMALL_STATE(1003)] = 32546, + [SMALL_STATE(1004)] = 32627, + [SMALL_STATE(1005)] = 32686, + [SMALL_STATE(1006)] = 32767, + [SMALL_STATE(1007)] = 32850, + [SMALL_STATE(1008)] = 32933, + [SMALL_STATE(1009)] = 33018, + [SMALL_STATE(1010)] = 33099, + [SMALL_STATE(1011)] = 33179, + [SMALL_STATE(1012)] = 33259, + [SMALL_STATE(1013)] = 33339, + [SMALL_STATE(1014)] = 33419, + [SMALL_STATE(1015)] = 33501, + [SMALL_STATE(1016)] = 33581, + [SMALL_STATE(1017)] = 33661, + [SMALL_STATE(1018)] = 33743, + [SMALL_STATE(1019)] = 33823, + [SMALL_STATE(1020)] = 33903, + [SMALL_STATE(1021)] = 33983, + [SMALL_STATE(1022)] = 34063, + [SMALL_STATE(1023)] = 34143, + [SMALL_STATE(1024)] = 34223, + [SMALL_STATE(1025)] = 34303, + [SMALL_STATE(1026)] = 34383, + [SMALL_STATE(1027)] = 34465, + [SMALL_STATE(1028)] = 34547, + [SMALL_STATE(1029)] = 34627, + [SMALL_STATE(1030)] = 34707, + [SMALL_STATE(1031)] = 34789, + [SMALL_STATE(1032)] = 34871, + [SMALL_STATE(1033)] = 34951, + [SMALL_STATE(1034)] = 35033, + [SMALL_STATE(1035)] = 35113, + [SMALL_STATE(1036)] = 35193, + [SMALL_STATE(1037)] = 35273, + [SMALL_STATE(1038)] = 35353, + [SMALL_STATE(1039)] = 35433, + [SMALL_STATE(1040)] = 35513, + [SMALL_STATE(1041)] = 35593, + [SMALL_STATE(1042)] = 35675, + [SMALL_STATE(1043)] = 35754, + [SMALL_STATE(1044)] = 35833, + [SMALL_STATE(1045)] = 35912, + [SMALL_STATE(1046)] = 35991, + [SMALL_STATE(1047)] = 36070, + [SMALL_STATE(1048)] = 36149, + [SMALL_STATE(1049)] = 36228, + [SMALL_STATE(1050)] = 36307, + [SMALL_STATE(1051)] = 36386, + [SMALL_STATE(1052)] = 36465, + [SMALL_STATE(1053)] = 36544, + [SMALL_STATE(1054)] = 36623, + [SMALL_STATE(1055)] = 36702, + [SMALL_STATE(1056)] = 36781, + [SMALL_STATE(1057)] = 36860, + [SMALL_STATE(1058)] = 36939, + [SMALL_STATE(1059)] = 37018, + [SMALL_STATE(1060)] = 37097, + [SMALL_STATE(1061)] = 37176, + [SMALL_STATE(1062)] = 37255, + [SMALL_STATE(1063)] = 37334, + [SMALL_STATE(1064)] = 37405, + [SMALL_STATE(1065)] = 37484, + [SMALL_STATE(1066)] = 37563, + [SMALL_STATE(1067)] = 37642, + [SMALL_STATE(1068)] = 37721, + [SMALL_STATE(1069)] = 37800, + [SMALL_STATE(1070)] = 37879, + [SMALL_STATE(1071)] = 37958, + [SMALL_STATE(1072)] = 38037, + [SMALL_STATE(1073)] = 38116, + [SMALL_STATE(1074)] = 38195, + [SMALL_STATE(1075)] = 38274, + [SMALL_STATE(1076)] = 38353, + [SMALL_STATE(1077)] = 38432, + [SMALL_STATE(1078)] = 38511, + [SMALL_STATE(1079)] = 38590, + [SMALL_STATE(1080)] = 38669, + [SMALL_STATE(1081)] = 38748, + [SMALL_STATE(1082)] = 38827, + [SMALL_STATE(1083)] = 38906, + [SMALL_STATE(1084)] = 38985, + [SMALL_STATE(1085)] = 39064, + [SMALL_STATE(1086)] = 39143, + [SMALL_STATE(1087)] = 39222, + [SMALL_STATE(1088)] = 39301, + [SMALL_STATE(1089)] = 39380, + [SMALL_STATE(1090)] = 39459, + [SMALL_STATE(1091)] = 39538, + [SMALL_STATE(1092)] = 39617, + [SMALL_STATE(1093)] = 39696, + [SMALL_STATE(1094)] = 39775, + [SMALL_STATE(1095)] = 39854, + [SMALL_STATE(1096)] = 39938, + [SMALL_STATE(1097)] = 39986, + [SMALL_STATE(1098)] = 40070, + [SMALL_STATE(1099)] = 40154, [SMALL_STATE(1100)] = 40238, - [SMALL_STATE(1101)] = 40317, - [SMALL_STATE(1102)] = 40396, - [SMALL_STATE(1103)] = 40475, - [SMALL_STATE(1104)] = 40554, - [SMALL_STATE(1105)] = 40619, - [SMALL_STATE(1106)] = 40659, - [SMALL_STATE(1107)] = 40699, - [SMALL_STATE(1108)] = 40741, - [SMALL_STATE(1109)] = 40780, - [SMALL_STATE(1110)] = 40819, - [SMALL_STATE(1111)] = 40858, - [SMALL_STATE(1112)] = 40901, - [SMALL_STATE(1113)] = 40960, - [SMALL_STATE(1114)] = 41001, - [SMALL_STATE(1115)] = 41060, - [SMALL_STATE(1116)] = 41098, - [SMALL_STATE(1117)] = 41136, - [SMALL_STATE(1118)] = 41189, - [SMALL_STATE(1119)] = 41242, - [SMALL_STATE(1120)] = 41295, - [SMALL_STATE(1121)] = 41341, - [SMALL_STATE(1122)] = 41387, - [SMALL_STATE(1123)] = 41433, - [SMALL_STATE(1124)] = 41465, - [SMALL_STATE(1125)] = 41515, - [SMALL_STATE(1126)] = 41556, - [SMALL_STATE(1127)] = 41597, - [SMALL_STATE(1128)] = 41624, - [SMALL_STATE(1129)] = 41648, - [SMALL_STATE(1130)] = 41672, - [SMALL_STATE(1131)] = 41696, - [SMALL_STATE(1132)] = 41720, - [SMALL_STATE(1133)] = 41744, - [SMALL_STATE(1134)] = 41768, - [SMALL_STATE(1135)] = 41792, - [SMALL_STATE(1136)] = 41816, - [SMALL_STATE(1137)] = 41840, - [SMALL_STATE(1138)] = 41864, - [SMALL_STATE(1139)] = 41888, - [SMALL_STATE(1140)] = 41912, - [SMALL_STATE(1141)] = 41936, - [SMALL_STATE(1142)] = 41960, - [SMALL_STATE(1143)] = 41984, - [SMALL_STATE(1144)] = 42008, - [SMALL_STATE(1145)] = 42032, - [SMALL_STATE(1146)] = 42056, - [SMALL_STATE(1147)] = 42080, - [SMALL_STATE(1148)] = 42104, - [SMALL_STATE(1149)] = 42128, - [SMALL_STATE(1150)] = 42152, - [SMALL_STATE(1151)] = 42176, - [SMALL_STATE(1152)] = 42200, - [SMALL_STATE(1153)] = 42224, - [SMALL_STATE(1154)] = 42248, - [SMALL_STATE(1155)] = 42272, - [SMALL_STATE(1156)] = 42296, - [SMALL_STATE(1157)] = 42320, - [SMALL_STATE(1158)] = 42344, - [SMALL_STATE(1159)] = 42368, - [SMALL_STATE(1160)] = 42392, - [SMALL_STATE(1161)] = 42416, - [SMALL_STATE(1162)] = 42440, - [SMALL_STATE(1163)] = 42477, - [SMALL_STATE(1164)] = 42514, - [SMALL_STATE(1165)] = 42549, - [SMALL_STATE(1166)] = 42576, - [SMALL_STATE(1167)] = 42613, - [SMALL_STATE(1168)] = 42648, - [SMALL_STATE(1169)] = 42673, - [SMALL_STATE(1170)] = 42710, - [SMALL_STATE(1171)] = 42747, - [SMALL_STATE(1172)] = 42784, - [SMALL_STATE(1173)] = 42819, - [SMALL_STATE(1174)] = 42841, - [SMALL_STATE(1175)] = 42873, - [SMALL_STATE(1176)] = 42907, - [SMALL_STATE(1177)] = 42941, - [SMALL_STATE(1178)] = 42975, - [SMALL_STATE(1179)] = 43009, - [SMALL_STATE(1180)] = 43041, - [SMALL_STATE(1181)] = 43073, - [SMALL_STATE(1182)] = 43095, - [SMALL_STATE(1183)] = 43129, - [SMALL_STATE(1184)] = 43158, - [SMALL_STATE(1185)] = 43187, - [SMALL_STATE(1186)] = 43214, - [SMALL_STATE(1187)] = 43241, - [SMALL_STATE(1188)] = 43270, - [SMALL_STATE(1189)] = 43295, - [SMALL_STATE(1190)] = 43322, - [SMALL_STATE(1191)] = 43353, - [SMALL_STATE(1192)] = 43384, - [SMALL_STATE(1193)] = 43413, - [SMALL_STATE(1194)] = 43442, - [SMALL_STATE(1195)] = 43473, - [SMALL_STATE(1196)] = 43504, - [SMALL_STATE(1197)] = 43533, - [SMALL_STATE(1198)] = 43562, - [SMALL_STATE(1199)] = 43593, - [SMALL_STATE(1200)] = 43622, - [SMALL_STATE(1201)] = 43651, - [SMALL_STATE(1202)] = 43682, - [SMALL_STATE(1203)] = 43711, - [SMALL_STATE(1204)] = 43740, - [SMALL_STATE(1205)] = 43769, - [SMALL_STATE(1206)] = 43798, - [SMALL_STATE(1207)] = 43827, - [SMALL_STATE(1208)] = 43856, - [SMALL_STATE(1209)] = 43885, - [SMALL_STATE(1210)] = 43914, - [SMALL_STATE(1211)] = 43945, - [SMALL_STATE(1212)] = 43974, - [SMALL_STATE(1213)] = 44005, - [SMALL_STATE(1214)] = 44036, - [SMALL_STATE(1215)] = 44065, - [SMALL_STATE(1216)] = 44094, - [SMALL_STATE(1217)] = 44123, - [SMALL_STATE(1218)] = 44152, - [SMALL_STATE(1219)] = 44186, - [SMALL_STATE(1220)] = 44212, - [SMALL_STATE(1221)] = 44238, - [SMALL_STATE(1222)] = 44264, - [SMALL_STATE(1223)] = 44294, - [SMALL_STATE(1224)] = 44328, - [SMALL_STATE(1225)] = 44354, - [SMALL_STATE(1226)] = 44386, - [SMALL_STATE(1227)] = 44412, - [SMALL_STATE(1228)] = 44446, - [SMALL_STATE(1229)] = 44480, - [SMALL_STATE(1230)] = 44510, - [SMALL_STATE(1231)] = 44538, - [SMALL_STATE(1232)] = 44565, - [SMALL_STATE(1233)] = 44590, - [SMALL_STATE(1234)] = 44613, - [SMALL_STATE(1235)] = 44636, - [SMALL_STATE(1236)] = 44663, - [SMALL_STATE(1237)] = 44686, - [SMALL_STATE(1238)] = 44709, - [SMALL_STATE(1239)] = 44732, - [SMALL_STATE(1240)] = 44763, - [SMALL_STATE(1241)] = 44786, - [SMALL_STATE(1242)] = 44807, - [SMALL_STATE(1243)] = 44832, - [SMALL_STATE(1244)] = 44855, - [SMALL_STATE(1245)] = 44878, - [SMALL_STATE(1246)] = 44901, - [SMALL_STATE(1247)] = 44924, - [SMALL_STATE(1248)] = 44947, - [SMALL_STATE(1249)] = 44966, - [SMALL_STATE(1250)] = 44987, - [SMALL_STATE(1251)] = 45008, - [SMALL_STATE(1252)] = 45031, - [SMALL_STATE(1253)] = 45057, - [SMALL_STATE(1254)] = 45085, - [SMALL_STATE(1255)] = 45113, - [SMALL_STATE(1256)] = 45137, - [SMALL_STATE(1257)] = 45165, - [SMALL_STATE(1258)] = 45193, - [SMALL_STATE(1259)] = 45217, - [SMALL_STATE(1260)] = 45245, - [SMALL_STATE(1261)] = 45273, - [SMALL_STATE(1262)] = 45301, - [SMALL_STATE(1263)] = 45329, - [SMALL_STATE(1264)] = 45353, - [SMALL_STATE(1265)] = 45379, - [SMALL_STATE(1266)] = 45405, - [SMALL_STATE(1267)] = 45423, - [SMALL_STATE(1268)] = 45451, - [SMALL_STATE(1269)] = 45479, - [SMALL_STATE(1270)] = 45507, - [SMALL_STATE(1271)] = 45535, - [SMALL_STATE(1272)] = 45557, - [SMALL_STATE(1273)] = 45585, - [SMALL_STATE(1274)] = 45609, - [SMALL_STATE(1275)] = 45635, - [SMALL_STATE(1276)] = 45663, - [SMALL_STATE(1277)] = 45689, - [SMALL_STATE(1278)] = 45715, - [SMALL_STATE(1279)] = 45743, - [SMALL_STATE(1280)] = 45771, - [SMALL_STATE(1281)] = 45797, - [SMALL_STATE(1282)] = 45819, - [SMALL_STATE(1283)] = 45847, - [SMALL_STATE(1284)] = 45865, - [SMALL_STATE(1285)] = 45893, - [SMALL_STATE(1286)] = 45917, - [SMALL_STATE(1287)] = 45943, - [SMALL_STATE(1288)] = 45969, - [SMALL_STATE(1289)] = 45997, - [SMALL_STATE(1290)] = 46025, - [SMALL_STATE(1291)] = 46051, - [SMALL_STATE(1292)] = 46079, - [SMALL_STATE(1293)] = 46097, - [SMALL_STATE(1294)] = 46121, - [SMALL_STATE(1295)] = 46147, - [SMALL_STATE(1296)] = 46173, - [SMALL_STATE(1297)] = 46197, - [SMALL_STATE(1298)] = 46221, - [SMALL_STATE(1299)] = 46249, - [SMALL_STATE(1300)] = 46275, - [SMALL_STATE(1301)] = 46303, - [SMALL_STATE(1302)] = 46321, - [SMALL_STATE(1303)] = 46349, - [SMALL_STATE(1304)] = 46375, - [SMALL_STATE(1305)] = 46401, - [SMALL_STATE(1306)] = 46425, - [SMALL_STATE(1307)] = 46446, - [SMALL_STATE(1308)] = 46467, - [SMALL_STATE(1309)] = 46486, - [SMALL_STATE(1310)] = 46511, - [SMALL_STATE(1311)] = 46536, - [SMALL_STATE(1312)] = 46557, - [SMALL_STATE(1313)] = 46580, - [SMALL_STATE(1314)] = 46601, - [SMALL_STATE(1315)] = 46624, - [SMALL_STATE(1316)] = 46643, - [SMALL_STATE(1317)] = 46666, - [SMALL_STATE(1318)] = 46689, - [SMALL_STATE(1319)] = 46710, - [SMALL_STATE(1320)] = 46731, - [SMALL_STATE(1321)] = 46756, - [SMALL_STATE(1322)] = 46777, - [SMALL_STATE(1323)] = 46798, - [SMALL_STATE(1324)] = 46819, - [SMALL_STATE(1325)] = 46840, - [SMALL_STATE(1326)] = 46861, - [SMALL_STATE(1327)] = 46886, - [SMALL_STATE(1328)] = 46903, - [SMALL_STATE(1329)] = 46924, - [SMALL_STATE(1330)] = 46949, - [SMALL_STATE(1331)] = 46972, - [SMALL_STATE(1332)] = 46991, - [SMALL_STATE(1333)] = 47010, - [SMALL_STATE(1334)] = 47035, - [SMALL_STATE(1335)] = 47054, - [SMALL_STATE(1336)] = 47079, - [SMALL_STATE(1337)] = 47100, - [SMALL_STATE(1338)] = 47125, - [SMALL_STATE(1339)] = 47148, - [SMALL_STATE(1340)] = 47169, - [SMALL_STATE(1341)] = 47190, - [SMALL_STATE(1342)] = 47211, - [SMALL_STATE(1343)] = 47236, - [SMALL_STATE(1344)] = 47259, - [SMALL_STATE(1345)] = 47278, - [SMALL_STATE(1346)] = 47299, - [SMALL_STATE(1347)] = 47322, - [SMALL_STATE(1348)] = 47345, - [SMALL_STATE(1349)] = 47366, - [SMALL_STATE(1350)] = 47391, - [SMALL_STATE(1351)] = 47414, - [SMALL_STATE(1352)] = 47433, - [SMALL_STATE(1353)] = 47454, - [SMALL_STATE(1354)] = 47475, - [SMALL_STATE(1355)] = 47492, - [SMALL_STATE(1356)] = 47513, - [SMALL_STATE(1357)] = 47538, - [SMALL_STATE(1358)] = 47561, - [SMALL_STATE(1359)] = 47580, - [SMALL_STATE(1360)] = 47601, - [SMALL_STATE(1361)] = 47622, - [SMALL_STATE(1362)] = 47643, - [SMALL_STATE(1363)] = 47664, - [SMALL_STATE(1364)] = 47685, - [SMALL_STATE(1365)] = 47708, - [SMALL_STATE(1366)] = 47731, - [SMALL_STATE(1367)] = 47752, - [SMALL_STATE(1368)] = 47773, - [SMALL_STATE(1369)] = 47794, - [SMALL_STATE(1370)] = 47815, - [SMALL_STATE(1371)] = 47834, - [SMALL_STATE(1372)] = 47859, - [SMALL_STATE(1373)] = 47880, - [SMALL_STATE(1374)] = 47899, - [SMALL_STATE(1375)] = 47920, - [SMALL_STATE(1376)] = 47943, - [SMALL_STATE(1377)] = 47961, - [SMALL_STATE(1378)] = 47983, - [SMALL_STATE(1379)] = 48001, - [SMALL_STATE(1380)] = 48021, - [SMALL_STATE(1381)] = 48037, - [SMALL_STATE(1382)] = 48057, - [SMALL_STATE(1383)] = 48077, - [SMALL_STATE(1384)] = 48093, - [SMALL_STATE(1385)] = 48109, - [SMALL_STATE(1386)] = 48125, - [SMALL_STATE(1387)] = 48141, - [SMALL_STATE(1388)] = 48161, - [SMALL_STATE(1389)] = 48181, - [SMALL_STATE(1390)] = 48203, - [SMALL_STATE(1391)] = 48223, - [SMALL_STATE(1392)] = 48243, - [SMALL_STATE(1393)] = 48259, - [SMALL_STATE(1394)] = 48281, - [SMALL_STATE(1395)] = 48303, - [SMALL_STATE(1396)] = 48319, - [SMALL_STATE(1397)] = 48335, - [SMALL_STATE(1398)] = 48353, - [SMALL_STATE(1399)] = 48369, - [SMALL_STATE(1400)] = 48391, - [SMALL_STATE(1401)] = 48413, - [SMALL_STATE(1402)] = 48431, - [SMALL_STATE(1403)] = 48451, - [SMALL_STATE(1404)] = 48473, - [SMALL_STATE(1405)] = 48491, - [SMALL_STATE(1406)] = 48511, - [SMALL_STATE(1407)] = 48533, - [SMALL_STATE(1408)] = 48551, - [SMALL_STATE(1409)] = 48571, - [SMALL_STATE(1410)] = 48593, - [SMALL_STATE(1411)] = 48615, - [SMALL_STATE(1412)] = 48635, - [SMALL_STATE(1413)] = 48655, - [SMALL_STATE(1414)] = 48671, - [SMALL_STATE(1415)] = 48691, - [SMALL_STATE(1416)] = 48711, - [SMALL_STATE(1417)] = 48729, - [SMALL_STATE(1418)] = 48749, - [SMALL_STATE(1419)] = 48765, - [SMALL_STATE(1420)] = 48787, - [SMALL_STATE(1421)] = 48805, - [SMALL_STATE(1422)] = 48825, - [SMALL_STATE(1423)] = 48841, - [SMALL_STATE(1424)] = 48857, - [SMALL_STATE(1425)] = 48879, - [SMALL_STATE(1426)] = 48897, - [SMALL_STATE(1427)] = 48913, - [SMALL_STATE(1428)] = 48929, - [SMALL_STATE(1429)] = 48951, - [SMALL_STATE(1430)] = 48973, - [SMALL_STATE(1431)] = 48993, - [SMALL_STATE(1432)] = 49009, - [SMALL_STATE(1433)] = 49029, - [SMALL_STATE(1434)] = 49051, - [SMALL_STATE(1435)] = 49071, - [SMALL_STATE(1436)] = 49093, - [SMALL_STATE(1437)] = 49113, - [SMALL_STATE(1438)] = 49133, - [SMALL_STATE(1439)] = 49153, - [SMALL_STATE(1440)] = 49173, - [SMALL_STATE(1441)] = 49193, - [SMALL_STATE(1442)] = 49215, - [SMALL_STATE(1443)] = 49237, - [SMALL_STATE(1444)] = 49257, - [SMALL_STATE(1445)] = 49277, - [SMALL_STATE(1446)] = 49297, - [SMALL_STATE(1447)] = 49317, - [SMALL_STATE(1448)] = 49335, - [SMALL_STATE(1449)] = 49355, - [SMALL_STATE(1450)] = 49375, - [SMALL_STATE(1451)] = 49397, - [SMALL_STATE(1452)] = 49413, - [SMALL_STATE(1453)] = 49435, - [SMALL_STATE(1454)] = 49457, - [SMALL_STATE(1455)] = 49477, - [SMALL_STATE(1456)] = 49499, - [SMALL_STATE(1457)] = 49517, - [SMALL_STATE(1458)] = 49533, - [SMALL_STATE(1459)] = 49553, - [SMALL_STATE(1460)] = 49573, - [SMALL_STATE(1461)] = 49593, - [SMALL_STATE(1462)] = 49609, - [SMALL_STATE(1463)] = 49629, - [SMALL_STATE(1464)] = 49645, - [SMALL_STATE(1465)] = 49667, - [SMALL_STATE(1466)] = 49687, - [SMALL_STATE(1467)] = 49709, - [SMALL_STATE(1468)] = 49727, - [SMALL_STATE(1469)] = 49749, - [SMALL_STATE(1470)] = 49769, - [SMALL_STATE(1471)] = 49791, - [SMALL_STATE(1472)] = 49807, - [SMALL_STATE(1473)] = 49829, - [SMALL_STATE(1474)] = 49849, - [SMALL_STATE(1475)] = 49869, - [SMALL_STATE(1476)] = 49891, - [SMALL_STATE(1477)] = 49907, - [SMALL_STATE(1478)] = 49929, - [SMALL_STATE(1479)] = 49951, - [SMALL_STATE(1480)] = 49973, - [SMALL_STATE(1481)] = 49993, - [SMALL_STATE(1482)] = 50015, - [SMALL_STATE(1483)] = 50031, - [SMALL_STATE(1484)] = 50047, - [SMALL_STATE(1485)] = 50067, - [SMALL_STATE(1486)] = 50083, - [SMALL_STATE(1487)] = 50101, - [SMALL_STATE(1488)] = 50117, - [SMALL_STATE(1489)] = 50135, - [SMALL_STATE(1490)] = 50155, - [SMALL_STATE(1491)] = 50175, - [SMALL_STATE(1492)] = 50190, - [SMALL_STATE(1493)] = 50209, - [SMALL_STATE(1494)] = 50226, - [SMALL_STATE(1495)] = 50245, - [SMALL_STATE(1496)] = 50264, - [SMALL_STATE(1497)] = 50281, - [SMALL_STATE(1498)] = 50300, - [SMALL_STATE(1499)] = 50319, - [SMALL_STATE(1500)] = 50336, - [SMALL_STATE(1501)] = 50353, - [SMALL_STATE(1502)] = 50370, - [SMALL_STATE(1503)] = 50387, - [SMALL_STATE(1504)] = 50406, - [SMALL_STATE(1505)] = 50425, - [SMALL_STATE(1506)] = 50442, - [SMALL_STATE(1507)] = 50459, - [SMALL_STATE(1508)] = 50476, - [SMALL_STATE(1509)] = 50495, - [SMALL_STATE(1510)] = 50512, - [SMALL_STATE(1511)] = 50531, - [SMALL_STATE(1512)] = 50548, - [SMALL_STATE(1513)] = 50567, - [SMALL_STATE(1514)] = 50586, - [SMALL_STATE(1515)] = 50605, - [SMALL_STATE(1516)] = 50624, - [SMALL_STATE(1517)] = 50639, - [SMALL_STATE(1518)] = 50658, - [SMALL_STATE(1519)] = 50673, - [SMALL_STATE(1520)] = 50688, - [SMALL_STATE(1521)] = 50707, - [SMALL_STATE(1522)] = 50724, - [SMALL_STATE(1523)] = 50743, - [SMALL_STATE(1524)] = 50760, - [SMALL_STATE(1525)] = 50779, - [SMALL_STATE(1526)] = 50798, - [SMALL_STATE(1527)] = 50815, - [SMALL_STATE(1528)] = 50834, - [SMALL_STATE(1529)] = 50853, - [SMALL_STATE(1530)] = 50870, - [SMALL_STATE(1531)] = 50889, - [SMALL_STATE(1532)] = 50906, - [SMALL_STATE(1533)] = 50923, - [SMALL_STATE(1534)] = 50940, - [SMALL_STATE(1535)] = 50959, - [SMALL_STATE(1536)] = 50976, - [SMALL_STATE(1537)] = 50995, - [SMALL_STATE(1538)] = 51012, - [SMALL_STATE(1539)] = 51029, - [SMALL_STATE(1540)] = 51046, - [SMALL_STATE(1541)] = 51063, - [SMALL_STATE(1542)] = 51080, - [SMALL_STATE(1543)] = 51097, - [SMALL_STATE(1544)] = 51116, - [SMALL_STATE(1545)] = 51133, - [SMALL_STATE(1546)] = 51150, - [SMALL_STATE(1547)] = 51167, - [SMALL_STATE(1548)] = 51184, - [SMALL_STATE(1549)] = 51201, - [SMALL_STATE(1550)] = 51218, - [SMALL_STATE(1551)] = 51235, - [SMALL_STATE(1552)] = 51254, - [SMALL_STATE(1553)] = 51273, - [SMALL_STATE(1554)] = 51290, - [SMALL_STATE(1555)] = 51309, - [SMALL_STATE(1556)] = 51328, - [SMALL_STATE(1557)] = 51345, - [SMALL_STATE(1558)] = 51364, - [SMALL_STATE(1559)] = 51383, - [SMALL_STATE(1560)] = 51400, - [SMALL_STATE(1561)] = 51419, - [SMALL_STATE(1562)] = 51436, - [SMALL_STATE(1563)] = 51455, - [SMALL_STATE(1564)] = 51472, - [SMALL_STATE(1565)] = 51489, - [SMALL_STATE(1566)] = 51506, - [SMALL_STATE(1567)] = 51525, - [SMALL_STATE(1568)] = 51544, - [SMALL_STATE(1569)] = 51561, - [SMALL_STATE(1570)] = 51578, - [SMALL_STATE(1571)] = 51593, - [SMALL_STATE(1572)] = 51610, - [SMALL_STATE(1573)] = 51625, - [SMALL_STATE(1574)] = 51644, - [SMALL_STATE(1575)] = 51661, - [SMALL_STATE(1576)] = 51678, - [SMALL_STATE(1577)] = 51695, - [SMALL_STATE(1578)] = 51712, - [SMALL_STATE(1579)] = 51729, - [SMALL_STATE(1580)] = 51746, - [SMALL_STATE(1581)] = 51761, - [SMALL_STATE(1582)] = 51778, - [SMALL_STATE(1583)] = 51795, - [SMALL_STATE(1584)] = 51814, - [SMALL_STATE(1585)] = 51831, - [SMALL_STATE(1586)] = 51848, - [SMALL_STATE(1587)] = 51865, - [SMALL_STATE(1588)] = 51884, - [SMALL_STATE(1589)] = 51901, - [SMALL_STATE(1590)] = 51918, - [SMALL_STATE(1591)] = 51935, - [SMALL_STATE(1592)] = 51952, - [SMALL_STATE(1593)] = 51969, - [SMALL_STATE(1594)] = 51986, - [SMALL_STATE(1595)] = 52005, - [SMALL_STATE(1596)] = 52022, - [SMALL_STATE(1597)] = 52039, - [SMALL_STATE(1598)] = 52058, - [SMALL_STATE(1599)] = 52075, - [SMALL_STATE(1600)] = 52092, - [SMALL_STATE(1601)] = 52109, - [SMALL_STATE(1602)] = 52126, - [SMALL_STATE(1603)] = 52143, - [SMALL_STATE(1604)] = 52160, - [SMALL_STATE(1605)] = 52179, - [SMALL_STATE(1606)] = 52196, - [SMALL_STATE(1607)] = 52213, - [SMALL_STATE(1608)] = 52230, - [SMALL_STATE(1609)] = 52249, - [SMALL_STATE(1610)] = 52268, - [SMALL_STATE(1611)] = 52287, - [SMALL_STATE(1612)] = 52306, - [SMALL_STATE(1613)] = 52325, - [SMALL_STATE(1614)] = 52342, - [SMALL_STATE(1615)] = 52359, - [SMALL_STATE(1616)] = 52376, - [SMALL_STATE(1617)] = 52393, - [SMALL_STATE(1618)] = 52412, - [SMALL_STATE(1619)] = 52429, - [SMALL_STATE(1620)] = 52446, - [SMALL_STATE(1621)] = 52463, - [SMALL_STATE(1622)] = 52480, - [SMALL_STATE(1623)] = 52497, - [SMALL_STATE(1624)] = 52514, - [SMALL_STATE(1625)] = 52531, - [SMALL_STATE(1626)] = 52548, - [SMALL_STATE(1627)] = 52565, - [SMALL_STATE(1628)] = 52582, - [SMALL_STATE(1629)] = 52601, - [SMALL_STATE(1630)] = 52618, - [SMALL_STATE(1631)] = 52635, - [SMALL_STATE(1632)] = 52652, - [SMALL_STATE(1633)] = 52671, - [SMALL_STATE(1634)] = 52688, - [SMALL_STATE(1635)] = 52707, - [SMALL_STATE(1636)] = 52724, - [SMALL_STATE(1637)] = 52743, - [SMALL_STATE(1638)] = 52762, - [SMALL_STATE(1639)] = 52777, - [SMALL_STATE(1640)] = 52796, - [SMALL_STATE(1641)] = 52811, - [SMALL_STATE(1642)] = 52830, - [SMALL_STATE(1643)] = 52847, - [SMALL_STATE(1644)] = 52864, - [SMALL_STATE(1645)] = 52883, - [SMALL_STATE(1646)] = 52902, - [SMALL_STATE(1647)] = 52921, - [SMALL_STATE(1648)] = 52940, - [SMALL_STATE(1649)] = 52959, - [SMALL_STATE(1650)] = 52974, - [SMALL_STATE(1651)] = 52993, - [SMALL_STATE(1652)] = 53012, - [SMALL_STATE(1653)] = 53031, - [SMALL_STATE(1654)] = 53046, - [SMALL_STATE(1655)] = 53061, - [SMALL_STATE(1656)] = 53080, - [SMALL_STATE(1657)] = 53095, - [SMALL_STATE(1658)] = 53114, - [SMALL_STATE(1659)] = 53131, - [SMALL_STATE(1660)] = 53148, - [SMALL_STATE(1661)] = 53167, - [SMALL_STATE(1662)] = 53186, - [SMALL_STATE(1663)] = 53201, - [SMALL_STATE(1664)] = 53218, - [SMALL_STATE(1665)] = 53235, - [SMALL_STATE(1666)] = 53254, - [SMALL_STATE(1667)] = 53273, - [SMALL_STATE(1668)] = 53292, - [SMALL_STATE(1669)] = 53311, - [SMALL_STATE(1670)] = 53330, - [SMALL_STATE(1671)] = 53347, - [SMALL_STATE(1672)] = 53364, - [SMALL_STATE(1673)] = 53383, - [SMALL_STATE(1674)] = 53400, - [SMALL_STATE(1675)] = 53419, - [SMALL_STATE(1676)] = 53438, - [SMALL_STATE(1677)] = 53455, - [SMALL_STATE(1678)] = 53472, - [SMALL_STATE(1679)] = 53487, - [SMALL_STATE(1680)] = 53506, - [SMALL_STATE(1681)] = 53525, - [SMALL_STATE(1682)] = 53542, - [SMALL_STATE(1683)] = 53557, - [SMALL_STATE(1684)] = 53576, - [SMALL_STATE(1685)] = 53591, - [SMALL_STATE(1686)] = 53606, - [SMALL_STATE(1687)] = 53623, - [SMALL_STATE(1688)] = 53638, - [SMALL_STATE(1689)] = 53655, - [SMALL_STATE(1690)] = 53672, - [SMALL_STATE(1691)] = 53689, - [SMALL_STATE(1692)] = 53708, - [SMALL_STATE(1693)] = 53725, - [SMALL_STATE(1694)] = 53740, - [SMALL_STATE(1695)] = 53759, - [SMALL_STATE(1696)] = 53778, - [SMALL_STATE(1697)] = 53795, - [SMALL_STATE(1698)] = 53810, - [SMALL_STATE(1699)] = 53829, - [SMALL_STATE(1700)] = 53844, - [SMALL_STATE(1701)] = 53859, - [SMALL_STATE(1702)] = 53878, - [SMALL_STATE(1703)] = 53897, - [SMALL_STATE(1704)] = 53914, - [SMALL_STATE(1705)] = 53933, - [SMALL_STATE(1706)] = 53952, - [SMALL_STATE(1707)] = 53971, - [SMALL_STATE(1708)] = 53990, - [SMALL_STATE(1709)] = 54007, - [SMALL_STATE(1710)] = 54026, - [SMALL_STATE(1711)] = 54043, - [SMALL_STATE(1712)] = 54060, - [SMALL_STATE(1713)] = 54079, - [SMALL_STATE(1714)] = 54096, - [SMALL_STATE(1715)] = 54115, - [SMALL_STATE(1716)] = 54132, - [SMALL_STATE(1717)] = 54151, - [SMALL_STATE(1718)] = 54170, - [SMALL_STATE(1719)] = 54189, - [SMALL_STATE(1720)] = 54208, - [SMALL_STATE(1721)] = 54227, - [SMALL_STATE(1722)] = 54246, - [SMALL_STATE(1723)] = 54263, - [SMALL_STATE(1724)] = 54282, - [SMALL_STATE(1725)] = 54299, - [SMALL_STATE(1726)] = 54316, - [SMALL_STATE(1727)] = 54333, - [SMALL_STATE(1728)] = 54352, - [SMALL_STATE(1729)] = 54367, - [SMALL_STATE(1730)] = 54386, - [SMALL_STATE(1731)] = 54405, - [SMALL_STATE(1732)] = 54420, - [SMALL_STATE(1733)] = 54439, - [SMALL_STATE(1734)] = 54458, - [SMALL_STATE(1735)] = 54477, - [SMALL_STATE(1736)] = 54493, - [SMALL_STATE(1737)] = 54509, - [SMALL_STATE(1738)] = 54525, - [SMALL_STATE(1739)] = 54541, - [SMALL_STATE(1740)] = 54557, - [SMALL_STATE(1741)] = 54571, - [SMALL_STATE(1742)] = 54587, - [SMALL_STATE(1743)] = 54603, - [SMALL_STATE(1744)] = 54617, - [SMALL_STATE(1745)] = 54631, - [SMALL_STATE(1746)] = 54647, - [SMALL_STATE(1747)] = 54663, - [SMALL_STATE(1748)] = 54679, - [SMALL_STATE(1749)] = 54695, - [SMALL_STATE(1750)] = 54709, - [SMALL_STATE(1751)] = 54723, - [SMALL_STATE(1752)] = 54739, - [SMALL_STATE(1753)] = 54755, - [SMALL_STATE(1754)] = 54769, - [SMALL_STATE(1755)] = 54785, - [SMALL_STATE(1756)] = 54801, - [SMALL_STATE(1757)] = 54817, - [SMALL_STATE(1758)] = 54833, - [SMALL_STATE(1759)] = 54849, - [SMALL_STATE(1760)] = 54863, - [SMALL_STATE(1761)] = 54879, - [SMALL_STATE(1762)] = 54893, - [SMALL_STATE(1763)] = 54909, - [SMALL_STATE(1764)] = 54923, - [SMALL_STATE(1765)] = 54939, - [SMALL_STATE(1766)] = 54955, - [SMALL_STATE(1767)] = 54971, - [SMALL_STATE(1768)] = 54987, - [SMALL_STATE(1769)] = 55003, - [SMALL_STATE(1770)] = 55017, - [SMALL_STATE(1771)] = 55033, - [SMALL_STATE(1772)] = 55049, - [SMALL_STATE(1773)] = 55065, - [SMALL_STATE(1774)] = 55079, - [SMALL_STATE(1775)] = 55095, - [SMALL_STATE(1776)] = 55109, - [SMALL_STATE(1777)] = 55125, - [SMALL_STATE(1778)] = 55139, - [SMALL_STATE(1779)] = 55155, - [SMALL_STATE(1780)] = 55169, - [SMALL_STATE(1781)] = 55183, - [SMALL_STATE(1782)] = 55197, - [SMALL_STATE(1783)] = 55213, - [SMALL_STATE(1784)] = 55229, - [SMALL_STATE(1785)] = 55243, - [SMALL_STATE(1786)] = 55259, - [SMALL_STATE(1787)] = 55275, - [SMALL_STATE(1788)] = 55289, - [SMALL_STATE(1789)] = 55305, - [SMALL_STATE(1790)] = 55321, - [SMALL_STATE(1791)] = 55335, - [SMALL_STATE(1792)] = 55351, - [SMALL_STATE(1793)] = 55367, - [SMALL_STATE(1794)] = 55383, - [SMALL_STATE(1795)] = 55399, - [SMALL_STATE(1796)] = 55415, - [SMALL_STATE(1797)] = 55431, - [SMALL_STATE(1798)] = 55447, - [SMALL_STATE(1799)] = 55463, - [SMALL_STATE(1800)] = 55479, - [SMALL_STATE(1801)] = 55495, - [SMALL_STATE(1802)] = 55511, - [SMALL_STATE(1803)] = 55527, - [SMALL_STATE(1804)] = 55543, - [SMALL_STATE(1805)] = 55557, - [SMALL_STATE(1806)] = 55573, - [SMALL_STATE(1807)] = 55589, - [SMALL_STATE(1808)] = 55605, - [SMALL_STATE(1809)] = 55619, - [SMALL_STATE(1810)] = 55635, - [SMALL_STATE(1811)] = 55649, - [SMALL_STATE(1812)] = 55665, - [SMALL_STATE(1813)] = 55679, - [SMALL_STATE(1814)] = 55695, - [SMALL_STATE(1815)] = 55709, - [SMALL_STATE(1816)] = 55723, - [SMALL_STATE(1817)] = 55737, - [SMALL_STATE(1818)] = 55753, - [SMALL_STATE(1819)] = 55767, - [SMALL_STATE(1820)] = 55781, - [SMALL_STATE(1821)] = 55795, - [SMALL_STATE(1822)] = 55811, - [SMALL_STATE(1823)] = 55827, - [SMALL_STATE(1824)] = 55841, - [SMALL_STATE(1825)] = 55855, - [SMALL_STATE(1826)] = 55869, - [SMALL_STATE(1827)] = 55883, - [SMALL_STATE(1828)] = 55899, - [SMALL_STATE(1829)] = 55913, - [SMALL_STATE(1830)] = 55927, - [SMALL_STATE(1831)] = 55943, - [SMALL_STATE(1832)] = 55957, - [SMALL_STATE(1833)] = 55971, - [SMALL_STATE(1834)] = 55985, - [SMALL_STATE(1835)] = 55999, - [SMALL_STATE(1836)] = 56013, - [SMALL_STATE(1837)] = 56029, - [SMALL_STATE(1838)] = 56045, - [SMALL_STATE(1839)] = 56059, - [SMALL_STATE(1840)] = 56075, - [SMALL_STATE(1841)] = 56089, - [SMALL_STATE(1842)] = 56105, - [SMALL_STATE(1843)] = 56119, - [SMALL_STATE(1844)] = 56135, - [SMALL_STATE(1845)] = 56151, - [SMALL_STATE(1846)] = 56165, - [SMALL_STATE(1847)] = 56181, - [SMALL_STATE(1848)] = 56197, - [SMALL_STATE(1849)] = 56211, - [SMALL_STATE(1850)] = 56225, - [SMALL_STATE(1851)] = 56241, - [SMALL_STATE(1852)] = 56255, - [SMALL_STATE(1853)] = 56269, - [SMALL_STATE(1854)] = 56285, - [SMALL_STATE(1855)] = 56299, - [SMALL_STATE(1856)] = 56315, - [SMALL_STATE(1857)] = 56331, - [SMALL_STATE(1858)] = 56347, - [SMALL_STATE(1859)] = 56363, - [SMALL_STATE(1860)] = 56377, - [SMALL_STATE(1861)] = 56391, - [SMALL_STATE(1862)] = 56407, - [SMALL_STATE(1863)] = 56421, - [SMALL_STATE(1864)] = 56435, - [SMALL_STATE(1865)] = 56449, - [SMALL_STATE(1866)] = 56465, - [SMALL_STATE(1867)] = 56481, - [SMALL_STATE(1868)] = 56497, - [SMALL_STATE(1869)] = 56511, - [SMALL_STATE(1870)] = 56527, - [SMALL_STATE(1871)] = 56543, - [SMALL_STATE(1872)] = 56557, - [SMALL_STATE(1873)] = 56571, - [SMALL_STATE(1874)] = 56587, - [SMALL_STATE(1875)] = 56601, - [SMALL_STATE(1876)] = 56617, - [SMALL_STATE(1877)] = 56633, - [SMALL_STATE(1878)] = 56647, - [SMALL_STATE(1879)] = 56663, - [SMALL_STATE(1880)] = 56679, - [SMALL_STATE(1881)] = 56695, - [SMALL_STATE(1882)] = 56711, - [SMALL_STATE(1883)] = 56727, - [SMALL_STATE(1884)] = 56743, - [SMALL_STATE(1885)] = 56759, - [SMALL_STATE(1886)] = 56773, - [SMALL_STATE(1887)] = 56789, - [SMALL_STATE(1888)] = 56805, - [SMALL_STATE(1889)] = 56819, - [SMALL_STATE(1890)] = 56833, - [SMALL_STATE(1891)] = 56847, - [SMALL_STATE(1892)] = 56863, - [SMALL_STATE(1893)] = 56879, - [SMALL_STATE(1894)] = 56895, - [SMALL_STATE(1895)] = 56911, - [SMALL_STATE(1896)] = 56925, - [SMALL_STATE(1897)] = 56939, - [SMALL_STATE(1898)] = 56953, - [SMALL_STATE(1899)] = 56969, - [SMALL_STATE(1900)] = 56985, - [SMALL_STATE(1901)] = 57001, - [SMALL_STATE(1902)] = 57015, - [SMALL_STATE(1903)] = 57029, - [SMALL_STATE(1904)] = 57045, - [SMALL_STATE(1905)] = 57061, - [SMALL_STATE(1906)] = 57075, - [SMALL_STATE(1907)] = 57091, - [SMALL_STATE(1908)] = 57107, - [SMALL_STATE(1909)] = 57123, - [SMALL_STATE(1910)] = 57139, - [SMALL_STATE(1911)] = 57153, - [SMALL_STATE(1912)] = 57169, - [SMALL_STATE(1913)] = 57183, - [SMALL_STATE(1914)] = 57197, - [SMALL_STATE(1915)] = 57213, - [SMALL_STATE(1916)] = 57229, - [SMALL_STATE(1917)] = 57245, - [SMALL_STATE(1918)] = 57261, - [SMALL_STATE(1919)] = 57275, - [SMALL_STATE(1920)] = 57289, - [SMALL_STATE(1921)] = 57305, - [SMALL_STATE(1922)] = 57319, - [SMALL_STATE(1923)] = 57333, - [SMALL_STATE(1924)] = 57347, - [SMALL_STATE(1925)] = 57363, - [SMALL_STATE(1926)] = 57377, - [SMALL_STATE(1927)] = 57393, - [SMALL_STATE(1928)] = 57409, - [SMALL_STATE(1929)] = 57423, - [SMALL_STATE(1930)] = 57439, - [SMALL_STATE(1931)] = 57453, - [SMALL_STATE(1932)] = 57467, - [SMALL_STATE(1933)] = 57483, - [SMALL_STATE(1934)] = 57497, - [SMALL_STATE(1935)] = 57513, - [SMALL_STATE(1936)] = 57529, - [SMALL_STATE(1937)] = 57545, - [SMALL_STATE(1938)] = 57559, - [SMALL_STATE(1939)] = 57575, - [SMALL_STATE(1940)] = 57589, - [SMALL_STATE(1941)] = 57603, - [SMALL_STATE(1942)] = 57619, - [SMALL_STATE(1943)] = 57632, - [SMALL_STATE(1944)] = 57645, - [SMALL_STATE(1945)] = 57658, - [SMALL_STATE(1946)] = 57671, - [SMALL_STATE(1947)] = 57684, - [SMALL_STATE(1948)] = 57697, - [SMALL_STATE(1949)] = 57710, - [SMALL_STATE(1950)] = 57723, - [SMALL_STATE(1951)] = 57736, - [SMALL_STATE(1952)] = 57749, - [SMALL_STATE(1953)] = 57762, - [SMALL_STATE(1954)] = 57775, - [SMALL_STATE(1955)] = 57788, - [SMALL_STATE(1956)] = 57801, - [SMALL_STATE(1957)] = 57814, - [SMALL_STATE(1958)] = 57827, - [SMALL_STATE(1959)] = 57840, - [SMALL_STATE(1960)] = 57853, - [SMALL_STATE(1961)] = 57866, - [SMALL_STATE(1962)] = 57879, - [SMALL_STATE(1963)] = 57892, - [SMALL_STATE(1964)] = 57905, - [SMALL_STATE(1965)] = 57918, - [SMALL_STATE(1966)] = 57931, - [SMALL_STATE(1967)] = 57944, - [SMALL_STATE(1968)] = 57957, - [SMALL_STATE(1969)] = 57970, - [SMALL_STATE(1970)] = 57983, - [SMALL_STATE(1971)] = 57996, - [SMALL_STATE(1972)] = 58009, - [SMALL_STATE(1973)] = 58022, - [SMALL_STATE(1974)] = 58035, - [SMALL_STATE(1975)] = 58048, - [SMALL_STATE(1976)] = 58061, - [SMALL_STATE(1977)] = 58074, - [SMALL_STATE(1978)] = 58087, - [SMALL_STATE(1979)] = 58100, - [SMALL_STATE(1980)] = 58113, - [SMALL_STATE(1981)] = 58126, - [SMALL_STATE(1982)] = 58139, - [SMALL_STATE(1983)] = 58152, - [SMALL_STATE(1984)] = 58165, - [SMALL_STATE(1985)] = 58178, - [SMALL_STATE(1986)] = 58191, - [SMALL_STATE(1987)] = 58204, - [SMALL_STATE(1988)] = 58217, - [SMALL_STATE(1989)] = 58230, - [SMALL_STATE(1990)] = 58243, - [SMALL_STATE(1991)] = 58256, - [SMALL_STATE(1992)] = 58269, - [SMALL_STATE(1993)] = 58282, - [SMALL_STATE(1994)] = 58295, - [SMALL_STATE(1995)] = 58308, - [SMALL_STATE(1996)] = 58321, - [SMALL_STATE(1997)] = 58334, - [SMALL_STATE(1998)] = 58347, - [SMALL_STATE(1999)] = 58360, - [SMALL_STATE(2000)] = 58373, - [SMALL_STATE(2001)] = 58386, - [SMALL_STATE(2002)] = 58399, - [SMALL_STATE(2003)] = 58412, - [SMALL_STATE(2004)] = 58425, - [SMALL_STATE(2005)] = 58438, - [SMALL_STATE(2006)] = 58451, - [SMALL_STATE(2007)] = 58464, - [SMALL_STATE(2008)] = 58477, - [SMALL_STATE(2009)] = 58490, - [SMALL_STATE(2010)] = 58503, - [SMALL_STATE(2011)] = 58516, - [SMALL_STATE(2012)] = 58529, - [SMALL_STATE(2013)] = 58542, - [SMALL_STATE(2014)] = 58555, - [SMALL_STATE(2015)] = 58568, - [SMALL_STATE(2016)] = 58581, - [SMALL_STATE(2017)] = 58594, - [SMALL_STATE(2018)] = 58607, - [SMALL_STATE(2019)] = 58620, - [SMALL_STATE(2020)] = 58633, - [SMALL_STATE(2021)] = 58646, - [SMALL_STATE(2022)] = 58659, - [SMALL_STATE(2023)] = 58672, - [SMALL_STATE(2024)] = 58685, - [SMALL_STATE(2025)] = 58698, - [SMALL_STATE(2026)] = 58711, - [SMALL_STATE(2027)] = 58724, - [SMALL_STATE(2028)] = 58737, - [SMALL_STATE(2029)] = 58750, - [SMALL_STATE(2030)] = 58763, - [SMALL_STATE(2031)] = 58776, - [SMALL_STATE(2032)] = 58789, - [SMALL_STATE(2033)] = 58802, - [SMALL_STATE(2034)] = 58815, - [SMALL_STATE(2035)] = 58828, - [SMALL_STATE(2036)] = 58841, - [SMALL_STATE(2037)] = 58854, - [SMALL_STATE(2038)] = 58867, - [SMALL_STATE(2039)] = 58880, - [SMALL_STATE(2040)] = 58893, - [SMALL_STATE(2041)] = 58906, - [SMALL_STATE(2042)] = 58919, - [SMALL_STATE(2043)] = 58932, - [SMALL_STATE(2044)] = 58945, - [SMALL_STATE(2045)] = 58958, - [SMALL_STATE(2046)] = 58971, - [SMALL_STATE(2047)] = 58984, - [SMALL_STATE(2048)] = 58997, - [SMALL_STATE(2049)] = 59010, - [SMALL_STATE(2050)] = 59023, - [SMALL_STATE(2051)] = 59036, - [SMALL_STATE(2052)] = 59049, - [SMALL_STATE(2053)] = 59062, - [SMALL_STATE(2054)] = 59075, - [SMALL_STATE(2055)] = 59088, - [SMALL_STATE(2056)] = 59101, - [SMALL_STATE(2057)] = 59114, - [SMALL_STATE(2058)] = 59127, - [SMALL_STATE(2059)] = 59140, - [SMALL_STATE(2060)] = 59153, - [SMALL_STATE(2061)] = 59166, - [SMALL_STATE(2062)] = 59179, - [SMALL_STATE(2063)] = 59192, - [SMALL_STATE(2064)] = 59205, - [SMALL_STATE(2065)] = 59218, - [SMALL_STATE(2066)] = 59231, - [SMALL_STATE(2067)] = 59244, - [SMALL_STATE(2068)] = 59257, - [SMALL_STATE(2069)] = 59270, - [SMALL_STATE(2070)] = 59283, - [SMALL_STATE(2071)] = 59296, - [SMALL_STATE(2072)] = 59309, - [SMALL_STATE(2073)] = 59322, - [SMALL_STATE(2074)] = 59335, - [SMALL_STATE(2075)] = 59348, - [SMALL_STATE(2076)] = 59361, - [SMALL_STATE(2077)] = 59374, - [SMALL_STATE(2078)] = 59387, - [SMALL_STATE(2079)] = 59400, - [SMALL_STATE(2080)] = 59413, - [SMALL_STATE(2081)] = 59426, - [SMALL_STATE(2082)] = 59439, - [SMALL_STATE(2083)] = 59452, - [SMALL_STATE(2084)] = 59465, - [SMALL_STATE(2085)] = 59478, - [SMALL_STATE(2086)] = 59491, - [SMALL_STATE(2087)] = 59504, - [SMALL_STATE(2088)] = 59517, - [SMALL_STATE(2089)] = 59530, - [SMALL_STATE(2090)] = 59543, - [SMALL_STATE(2091)] = 59556, - [SMALL_STATE(2092)] = 59569, - [SMALL_STATE(2093)] = 59582, - [SMALL_STATE(2094)] = 59595, - [SMALL_STATE(2095)] = 59608, - [SMALL_STATE(2096)] = 59621, - [SMALL_STATE(2097)] = 59634, - [SMALL_STATE(2098)] = 59647, - [SMALL_STATE(2099)] = 59660, - [SMALL_STATE(2100)] = 59673, - [SMALL_STATE(2101)] = 59686, - [SMALL_STATE(2102)] = 59699, - [SMALL_STATE(2103)] = 59712, - [SMALL_STATE(2104)] = 59725, - [SMALL_STATE(2105)] = 59738, - [SMALL_STATE(2106)] = 59751, - [SMALL_STATE(2107)] = 59764, - [SMALL_STATE(2108)] = 59777, - [SMALL_STATE(2109)] = 59781, + [SMALL_STATE(1101)] = 40322, + [SMALL_STATE(1102)] = 40406, + [SMALL_STATE(1103)] = 40454, + [SMALL_STATE(1104)] = 40538, + [SMALL_STATE(1105)] = 40622, + [SMALL_STATE(1106)] = 40704, + [SMALL_STATE(1107)] = 40769, + [SMALL_STATE(1108)] = 40810, + [SMALL_STATE(1109)] = 40850, + [SMALL_STATE(1110)] = 40890, + [SMALL_STATE(1111)] = 40932, + [SMALL_STATE(1112)] = 40975, + [SMALL_STATE(1113)] = 41014, + [SMALL_STATE(1114)] = 41053, + [SMALL_STATE(1115)] = 41112, + [SMALL_STATE(1116)] = 41153, + [SMALL_STATE(1117)] = 41192, + [SMALL_STATE(1118)] = 41251, + [SMALL_STATE(1119)] = 41289, + [SMALL_STATE(1120)] = 41327, + [SMALL_STATE(1121)] = 41380, + [SMALL_STATE(1122)] = 41433, + [SMALL_STATE(1123)] = 41486, + [SMALL_STATE(1124)] = 41532, + [SMALL_STATE(1125)] = 41578, + [SMALL_STATE(1126)] = 41624, + [SMALL_STATE(1127)] = 41656, + [SMALL_STATE(1128)] = 41711, + [SMALL_STATE(1129)] = 41752, + [SMALL_STATE(1130)] = 41793, + [SMALL_STATE(1131)] = 41820, + [SMALL_STATE(1132)] = 41844, + [SMALL_STATE(1133)] = 41868, + [SMALL_STATE(1134)] = 41892, + [SMALL_STATE(1135)] = 41916, + [SMALL_STATE(1136)] = 41940, + [SMALL_STATE(1137)] = 41964, + [SMALL_STATE(1138)] = 41988, + [SMALL_STATE(1139)] = 42012, + [SMALL_STATE(1140)] = 42036, + [SMALL_STATE(1141)] = 42060, + [SMALL_STATE(1142)] = 42084, + [SMALL_STATE(1143)] = 42108, + [SMALL_STATE(1144)] = 42132, + [SMALL_STATE(1145)] = 42156, + [SMALL_STATE(1146)] = 42180, + [SMALL_STATE(1147)] = 42204, + [SMALL_STATE(1148)] = 42228, + [SMALL_STATE(1149)] = 42252, + [SMALL_STATE(1150)] = 42276, + [SMALL_STATE(1151)] = 42300, + [SMALL_STATE(1152)] = 42324, + [SMALL_STATE(1153)] = 42348, + [SMALL_STATE(1154)] = 42372, + [SMALL_STATE(1155)] = 42396, + [SMALL_STATE(1156)] = 42420, + [SMALL_STATE(1157)] = 42444, + [SMALL_STATE(1158)] = 42468, + [SMALL_STATE(1159)] = 42492, + [SMALL_STATE(1160)] = 42516, + [SMALL_STATE(1161)] = 42540, + [SMALL_STATE(1162)] = 42564, + [SMALL_STATE(1163)] = 42588, + [SMALL_STATE(1164)] = 42612, + [SMALL_STATE(1165)] = 42636, + [SMALL_STATE(1166)] = 42660, + [SMALL_STATE(1167)] = 42684, + [SMALL_STATE(1168)] = 42709, + [SMALL_STATE(1169)] = 42746, + [SMALL_STATE(1170)] = 42783, + [SMALL_STATE(1171)] = 42810, + [SMALL_STATE(1172)] = 42847, + [SMALL_STATE(1173)] = 42882, + [SMALL_STATE(1174)] = 42919, + [SMALL_STATE(1175)] = 42956, + [SMALL_STATE(1176)] = 42993, + [SMALL_STATE(1177)] = 43028, + [SMALL_STATE(1178)] = 43063, + [SMALL_STATE(1179)] = 43095, + [SMALL_STATE(1180)] = 43129, + [SMALL_STATE(1181)] = 43163, + [SMALL_STATE(1182)] = 43185, + [SMALL_STATE(1183)] = 43207, + [SMALL_STATE(1184)] = 43241, + [SMALL_STATE(1185)] = 43275, + [SMALL_STATE(1186)] = 43309, + [SMALL_STATE(1187)] = 43341, + [SMALL_STATE(1188)] = 43373, + [SMALL_STATE(1189)] = 43402, + [SMALL_STATE(1190)] = 43431, + [SMALL_STATE(1191)] = 43460, + [SMALL_STATE(1192)] = 43489, + [SMALL_STATE(1193)] = 43518, + [SMALL_STATE(1194)] = 43547, + [SMALL_STATE(1195)] = 43576, + [SMALL_STATE(1196)] = 43607, + [SMALL_STATE(1197)] = 43636, + [SMALL_STATE(1198)] = 43665, + [SMALL_STATE(1199)] = 43694, + [SMALL_STATE(1200)] = 43723, + [SMALL_STATE(1201)] = 43748, + [SMALL_STATE(1202)] = 43777, + [SMALL_STATE(1203)] = 43808, + [SMALL_STATE(1204)] = 43837, + [SMALL_STATE(1205)] = 43864, + [SMALL_STATE(1206)] = 43895, + [SMALL_STATE(1207)] = 43926, + [SMALL_STATE(1208)] = 43955, + [SMALL_STATE(1209)] = 43986, + [SMALL_STATE(1210)] = 44015, + [SMALL_STATE(1211)] = 44044, + [SMALL_STATE(1212)] = 44075, + [SMALL_STATE(1213)] = 44104, + [SMALL_STATE(1214)] = 44133, + [SMALL_STATE(1215)] = 44162, + [SMALL_STATE(1216)] = 44191, + [SMALL_STATE(1217)] = 44220, + [SMALL_STATE(1218)] = 44247, + [SMALL_STATE(1219)] = 44278, + [SMALL_STATE(1220)] = 44307, + [SMALL_STATE(1221)] = 44338, + [SMALL_STATE(1222)] = 44365, + [SMALL_STATE(1223)] = 44396, + [SMALL_STATE(1224)] = 44422, + [SMALL_STATE(1225)] = 44448, + [SMALL_STATE(1226)] = 44476, + [SMALL_STATE(1227)] = 44502, + [SMALL_STATE(1228)] = 44534, + [SMALL_STATE(1229)] = 44568, + [SMALL_STATE(1230)] = 44598, + [SMALL_STATE(1231)] = 44628, + [SMALL_STATE(1232)] = 44654, + [SMALL_STATE(1233)] = 44680, + [SMALL_STATE(1234)] = 44714, + [SMALL_STATE(1235)] = 44748, + [SMALL_STATE(1236)] = 44782, + [SMALL_STATE(1237)] = 44803, + [SMALL_STATE(1238)] = 44830, + [SMALL_STATE(1239)] = 44857, + [SMALL_STATE(1240)] = 44880, + [SMALL_STATE(1241)] = 44909, + [SMALL_STATE(1242)] = 44932, + [SMALL_STATE(1243)] = 44953, + [SMALL_STATE(1244)] = 44976, + [SMALL_STATE(1245)] = 44999, + [SMALL_STATE(1246)] = 45022, + [SMALL_STATE(1247)] = 45043, + [SMALL_STATE(1248)] = 45066, + [SMALL_STATE(1249)] = 45095, + [SMALL_STATE(1250)] = 45118, + [SMALL_STATE(1251)] = 45141, + [SMALL_STATE(1252)] = 45164, + [SMALL_STATE(1253)] = 45183, + [SMALL_STATE(1254)] = 45206, + [SMALL_STATE(1255)] = 45231, + [SMALL_STATE(1256)] = 45262, + [SMALL_STATE(1257)] = 45285, + [SMALL_STATE(1258)] = 45310, + [SMALL_STATE(1259)] = 45333, + [SMALL_STATE(1260)] = 45355, + [SMALL_STATE(1261)] = 45383, + [SMALL_STATE(1262)] = 45409, + [SMALL_STATE(1263)] = 45437, + [SMALL_STATE(1264)] = 45463, + [SMALL_STATE(1265)] = 45481, + [SMALL_STATE(1266)] = 45509, + [SMALL_STATE(1267)] = 45533, + [SMALL_STATE(1268)] = 45561, + [SMALL_STATE(1269)] = 45589, + [SMALL_STATE(1270)] = 45617, + [SMALL_STATE(1271)] = 45635, + [SMALL_STATE(1272)] = 45663, + [SMALL_STATE(1273)] = 45687, + [SMALL_STATE(1274)] = 45705, + [SMALL_STATE(1275)] = 45729, + [SMALL_STATE(1276)] = 45757, + [SMALL_STATE(1277)] = 45781, + [SMALL_STATE(1278)] = 45805, + [SMALL_STATE(1279)] = 45833, + [SMALL_STATE(1280)] = 45861, + [SMALL_STATE(1281)] = 45885, + [SMALL_STATE(1282)] = 45907, + [SMALL_STATE(1283)] = 45931, + [SMALL_STATE(1284)] = 45959, + [SMALL_STATE(1285)] = 45987, + [SMALL_STATE(1286)] = 46015, + [SMALL_STATE(1287)] = 46041, + [SMALL_STATE(1288)] = 46069, + [SMALL_STATE(1289)] = 46095, + [SMALL_STATE(1290)] = 46123, + [SMALL_STATE(1291)] = 46151, + [SMALL_STATE(1292)] = 46179, + [SMALL_STATE(1293)] = 46205, + [SMALL_STATE(1294)] = 46231, + [SMALL_STATE(1295)] = 46257, + [SMALL_STATE(1296)] = 46285, + [SMALL_STATE(1297)] = 46311, + [SMALL_STATE(1298)] = 46339, + [SMALL_STATE(1299)] = 46367, + [SMALL_STATE(1300)] = 46393, + [SMALL_STATE(1301)] = 46421, + [SMALL_STATE(1302)] = 46449, + [SMALL_STATE(1303)] = 46477, + [SMALL_STATE(1304)] = 46501, + [SMALL_STATE(1305)] = 46527, + [SMALL_STATE(1306)] = 46553, + [SMALL_STATE(1307)] = 46579, + [SMALL_STATE(1308)] = 46607, + [SMALL_STATE(1309)] = 46625, + [SMALL_STATE(1310)] = 46649, + [SMALL_STATE(1311)] = 46675, + [SMALL_STATE(1312)] = 46696, + [SMALL_STATE(1313)] = 46719, + [SMALL_STATE(1314)] = 46740, + [SMALL_STATE(1315)] = 46761, + [SMALL_STATE(1316)] = 46780, + [SMALL_STATE(1317)] = 46805, + [SMALL_STATE(1318)] = 46828, + [SMALL_STATE(1319)] = 46849, + [SMALL_STATE(1320)] = 46870, + [SMALL_STATE(1321)] = 46893, + [SMALL_STATE(1322)] = 46912, + [SMALL_STATE(1323)] = 46937, + [SMALL_STATE(1324)] = 46954, + [SMALL_STATE(1325)] = 46979, + [SMALL_STATE(1326)] = 46998, + [SMALL_STATE(1327)] = 47019, + [SMALL_STATE(1328)] = 47038, + [SMALL_STATE(1329)] = 47059, + [SMALL_STATE(1330)] = 47082, + [SMALL_STATE(1331)] = 47107, + [SMALL_STATE(1332)] = 47128, + [SMALL_STATE(1333)] = 47149, + [SMALL_STATE(1334)] = 47174, + [SMALL_STATE(1335)] = 47195, + [SMALL_STATE(1336)] = 47218, + [SMALL_STATE(1337)] = 47239, + [SMALL_STATE(1338)] = 47260, + [SMALL_STATE(1339)] = 47279, + [SMALL_STATE(1340)] = 47300, + [SMALL_STATE(1341)] = 47323, + [SMALL_STATE(1342)] = 47346, + [SMALL_STATE(1343)] = 47369, + [SMALL_STATE(1344)] = 47392, + [SMALL_STATE(1345)] = 47417, + [SMALL_STATE(1346)] = 47440, + [SMALL_STATE(1347)] = 47465, + [SMALL_STATE(1348)] = 47486, + [SMALL_STATE(1349)] = 47511, + [SMALL_STATE(1350)] = 47532, + [SMALL_STATE(1351)] = 47551, + [SMALL_STATE(1352)] = 47572, + [SMALL_STATE(1353)] = 47597, + [SMALL_STATE(1354)] = 47618, + [SMALL_STATE(1355)] = 47639, + [SMALL_STATE(1356)] = 47660, + [SMALL_STATE(1357)] = 47681, + [SMALL_STATE(1358)] = 47702, + [SMALL_STATE(1359)] = 47723, + [SMALL_STATE(1360)] = 47744, + [SMALL_STATE(1361)] = 47763, + [SMALL_STATE(1362)] = 47788, + [SMALL_STATE(1363)] = 47809, + [SMALL_STATE(1364)] = 47832, + [SMALL_STATE(1365)] = 47853, + [SMALL_STATE(1366)] = 47874, + [SMALL_STATE(1367)] = 47897, + [SMALL_STATE(1368)] = 47918, + [SMALL_STATE(1369)] = 47943, + [SMALL_STATE(1370)] = 47964, + [SMALL_STATE(1371)] = 47985, + [SMALL_STATE(1372)] = 48004, + [SMALL_STATE(1373)] = 48023, + [SMALL_STATE(1374)] = 48046, + [SMALL_STATE(1375)] = 48071, + [SMALL_STATE(1376)] = 48090, + [SMALL_STATE(1377)] = 48111, + [SMALL_STATE(1378)] = 48134, + [SMALL_STATE(1379)] = 48151, + [SMALL_STATE(1380)] = 48172, + [SMALL_STATE(1381)] = 48193, + [SMALL_STATE(1382)] = 48209, + [SMALL_STATE(1383)] = 48227, + [SMALL_STATE(1384)] = 48247, + [SMALL_STATE(1385)] = 48263, + [SMALL_STATE(1386)] = 48281, + [SMALL_STATE(1387)] = 48301, + [SMALL_STATE(1388)] = 48319, + [SMALL_STATE(1389)] = 48339, + [SMALL_STATE(1390)] = 48355, + [SMALL_STATE(1391)] = 48375, + [SMALL_STATE(1392)] = 48391, + [SMALL_STATE(1393)] = 48407, + [SMALL_STATE(1394)] = 48425, + [SMALL_STATE(1395)] = 48441, + [SMALL_STATE(1396)] = 48463, + [SMALL_STATE(1397)] = 48483, + [SMALL_STATE(1398)] = 48505, + [SMALL_STATE(1399)] = 48527, + [SMALL_STATE(1400)] = 48547, + [SMALL_STATE(1401)] = 48569, + [SMALL_STATE(1402)] = 48587, + [SMALL_STATE(1403)] = 48603, + [SMALL_STATE(1404)] = 48625, + [SMALL_STATE(1405)] = 48645, + [SMALL_STATE(1406)] = 48661, + [SMALL_STATE(1407)] = 48681, + [SMALL_STATE(1408)] = 48697, + [SMALL_STATE(1409)] = 48713, + [SMALL_STATE(1410)] = 48729, + [SMALL_STATE(1411)] = 48745, + [SMALL_STATE(1412)] = 48767, + [SMALL_STATE(1413)] = 48785, + [SMALL_STATE(1414)] = 48807, + [SMALL_STATE(1415)] = 48829, + [SMALL_STATE(1416)] = 48845, + [SMALL_STATE(1417)] = 48867, + [SMALL_STATE(1418)] = 48887, + [SMALL_STATE(1419)] = 48909, + [SMALL_STATE(1420)] = 48929, + [SMALL_STATE(1421)] = 48949, + [SMALL_STATE(1422)] = 48965, + [SMALL_STATE(1423)] = 48985, + [SMALL_STATE(1424)] = 49003, + [SMALL_STATE(1425)] = 49025, + [SMALL_STATE(1426)] = 49045, + [SMALL_STATE(1427)] = 49065, + [SMALL_STATE(1428)] = 49081, + [SMALL_STATE(1429)] = 49101, + [SMALL_STATE(1430)] = 49123, + [SMALL_STATE(1431)] = 49139, + [SMALL_STATE(1432)] = 49159, + [SMALL_STATE(1433)] = 49179, + [SMALL_STATE(1434)] = 49195, + [SMALL_STATE(1435)] = 49213, + [SMALL_STATE(1436)] = 49235, + [SMALL_STATE(1437)] = 49255, + [SMALL_STATE(1438)] = 49275, + [SMALL_STATE(1439)] = 49291, + [SMALL_STATE(1440)] = 49309, + [SMALL_STATE(1441)] = 49329, + [SMALL_STATE(1442)] = 49351, + [SMALL_STATE(1443)] = 49371, + [SMALL_STATE(1444)] = 49391, + [SMALL_STATE(1445)] = 49411, + [SMALL_STATE(1446)] = 49429, + [SMALL_STATE(1447)] = 49451, + [SMALL_STATE(1448)] = 49473, + [SMALL_STATE(1449)] = 49495, + [SMALL_STATE(1450)] = 49515, + [SMALL_STATE(1451)] = 49535, + [SMALL_STATE(1452)] = 49555, + [SMALL_STATE(1453)] = 49575, + [SMALL_STATE(1454)] = 49595, + [SMALL_STATE(1455)] = 49613, + [SMALL_STATE(1456)] = 49633, + [SMALL_STATE(1457)] = 49649, + [SMALL_STATE(1458)] = 49671, + [SMALL_STATE(1459)] = 49687, + [SMALL_STATE(1460)] = 49709, + [SMALL_STATE(1461)] = 49725, + [SMALL_STATE(1462)] = 49745, + [SMALL_STATE(1463)] = 49767, + [SMALL_STATE(1464)] = 49787, + [SMALL_STATE(1465)] = 49807, + [SMALL_STATE(1466)] = 49827, + [SMALL_STATE(1467)] = 49849, + [SMALL_STATE(1468)] = 49869, + [SMALL_STATE(1469)] = 49889, + [SMALL_STATE(1470)] = 49911, + [SMALL_STATE(1471)] = 49929, + [SMALL_STATE(1472)] = 49945, + [SMALL_STATE(1473)] = 49967, + [SMALL_STATE(1474)] = 49989, + [SMALL_STATE(1475)] = 50009, + [SMALL_STATE(1476)] = 50027, + [SMALL_STATE(1477)] = 50043, + [SMALL_STATE(1478)] = 50065, + [SMALL_STATE(1479)] = 50087, + [SMALL_STATE(1480)] = 50109, + [SMALL_STATE(1481)] = 50129, + [SMALL_STATE(1482)] = 50149, + [SMALL_STATE(1483)] = 50165, + [SMALL_STATE(1484)] = 50187, + [SMALL_STATE(1485)] = 50205, + [SMALL_STATE(1486)] = 50227, + [SMALL_STATE(1487)] = 50249, + [SMALL_STATE(1488)] = 50269, + [SMALL_STATE(1489)] = 50285, + [SMALL_STATE(1490)] = 50301, + [SMALL_STATE(1491)] = 50321, + [SMALL_STATE(1492)] = 50341, + [SMALL_STATE(1493)] = 50361, + [SMALL_STATE(1494)] = 50383, + [SMALL_STATE(1495)] = 50405, + [SMALL_STATE(1496)] = 50425, + [SMALL_STATE(1497)] = 50442, + [SMALL_STATE(1498)] = 50459, + [SMALL_STATE(1499)] = 50478, + [SMALL_STATE(1500)] = 50495, + [SMALL_STATE(1501)] = 50512, + [SMALL_STATE(1502)] = 50529, + [SMALL_STATE(1503)] = 50546, + [SMALL_STATE(1504)] = 50565, + [SMALL_STATE(1505)] = 50582, + [SMALL_STATE(1506)] = 50601, + [SMALL_STATE(1507)] = 50618, + [SMALL_STATE(1508)] = 50637, + [SMALL_STATE(1509)] = 50656, + [SMALL_STATE(1510)] = 50673, + [SMALL_STATE(1511)] = 50692, + [SMALL_STATE(1512)] = 50711, + [SMALL_STATE(1513)] = 50728, + [SMALL_STATE(1514)] = 50747, + [SMALL_STATE(1515)] = 50766, + [SMALL_STATE(1516)] = 50783, + [SMALL_STATE(1517)] = 50802, + [SMALL_STATE(1518)] = 50821, + [SMALL_STATE(1519)] = 50840, + [SMALL_STATE(1520)] = 50859, + [SMALL_STATE(1521)] = 50878, + [SMALL_STATE(1522)] = 50895, + [SMALL_STATE(1523)] = 50914, + [SMALL_STATE(1524)] = 50931, + [SMALL_STATE(1525)] = 50948, + [SMALL_STATE(1526)] = 50965, + [SMALL_STATE(1527)] = 50980, + [SMALL_STATE(1528)] = 50999, + [SMALL_STATE(1529)] = 51018, + [SMALL_STATE(1530)] = 51033, + [SMALL_STATE(1531)] = 51052, + [SMALL_STATE(1532)] = 51071, + [SMALL_STATE(1533)] = 51088, + [SMALL_STATE(1534)] = 51107, + [SMALL_STATE(1535)] = 51124, + [SMALL_STATE(1536)] = 51141, + [SMALL_STATE(1537)] = 51160, + [SMALL_STATE(1538)] = 51179, + [SMALL_STATE(1539)] = 51196, + [SMALL_STATE(1540)] = 51215, + [SMALL_STATE(1541)] = 51232, + [SMALL_STATE(1542)] = 51249, + [SMALL_STATE(1543)] = 51268, + [SMALL_STATE(1544)] = 51285, + [SMALL_STATE(1545)] = 51302, + [SMALL_STATE(1546)] = 51319, + [SMALL_STATE(1547)] = 51336, + [SMALL_STATE(1548)] = 51353, + [SMALL_STATE(1549)] = 51372, + [SMALL_STATE(1550)] = 51389, + [SMALL_STATE(1551)] = 51404, + [SMALL_STATE(1552)] = 51423, + [SMALL_STATE(1553)] = 51438, + [SMALL_STATE(1554)] = 51457, + [SMALL_STATE(1555)] = 51474, + [SMALL_STATE(1556)] = 51491, + [SMALL_STATE(1557)] = 51508, + [SMALL_STATE(1558)] = 51527, + [SMALL_STATE(1559)] = 51544, + [SMALL_STATE(1560)] = 51563, + [SMALL_STATE(1561)] = 51580, + [SMALL_STATE(1562)] = 51599, + [SMALL_STATE(1563)] = 51618, + [SMALL_STATE(1564)] = 51637, + [SMALL_STATE(1565)] = 51656, + [SMALL_STATE(1566)] = 51675, + [SMALL_STATE(1567)] = 51692, + [SMALL_STATE(1568)] = 51711, + [SMALL_STATE(1569)] = 51728, + [SMALL_STATE(1570)] = 51743, + [SMALL_STATE(1571)] = 51760, + [SMALL_STATE(1572)] = 51777, + [SMALL_STATE(1573)] = 51796, + [SMALL_STATE(1574)] = 51813, + [SMALL_STATE(1575)] = 51832, + [SMALL_STATE(1576)] = 51851, + [SMALL_STATE(1577)] = 51868, + [SMALL_STATE(1578)] = 51887, + [SMALL_STATE(1579)] = 51902, + [SMALL_STATE(1580)] = 51921, + [SMALL_STATE(1581)] = 51936, + [SMALL_STATE(1582)] = 51955, + [SMALL_STATE(1583)] = 51974, + [SMALL_STATE(1584)] = 51993, + [SMALL_STATE(1585)] = 52012, + [SMALL_STATE(1586)] = 52029, + [SMALL_STATE(1587)] = 52046, + [SMALL_STATE(1588)] = 52063, + [SMALL_STATE(1589)] = 52080, + [SMALL_STATE(1590)] = 52097, + [SMALL_STATE(1591)] = 52116, + [SMALL_STATE(1592)] = 52135, + [SMALL_STATE(1593)] = 52154, + [SMALL_STATE(1594)] = 52171, + [SMALL_STATE(1595)] = 52190, + [SMALL_STATE(1596)] = 52207, + [SMALL_STATE(1597)] = 52222, + [SMALL_STATE(1598)] = 52239, + [SMALL_STATE(1599)] = 52256, + [SMALL_STATE(1600)] = 52273, + [SMALL_STATE(1601)] = 52292, + [SMALL_STATE(1602)] = 52307, + [SMALL_STATE(1603)] = 52326, + [SMALL_STATE(1604)] = 52341, + [SMALL_STATE(1605)] = 52358, + [SMALL_STATE(1606)] = 52375, + [SMALL_STATE(1607)] = 52392, + [SMALL_STATE(1608)] = 52409, + [SMALL_STATE(1609)] = 52426, + [SMALL_STATE(1610)] = 52443, + [SMALL_STATE(1611)] = 52458, + [SMALL_STATE(1612)] = 52477, + [SMALL_STATE(1613)] = 52496, + [SMALL_STATE(1614)] = 52511, + [SMALL_STATE(1615)] = 52528, + [SMALL_STATE(1616)] = 52547, + [SMALL_STATE(1617)] = 52562, + [SMALL_STATE(1618)] = 52579, + [SMALL_STATE(1619)] = 52594, + [SMALL_STATE(1620)] = 52611, + [SMALL_STATE(1621)] = 52628, + [SMALL_STATE(1622)] = 52645, + [SMALL_STATE(1623)] = 52664, + [SMALL_STATE(1624)] = 52681, + [SMALL_STATE(1625)] = 52698, + [SMALL_STATE(1626)] = 52717, + [SMALL_STATE(1627)] = 52732, + [SMALL_STATE(1628)] = 52749, + [SMALL_STATE(1629)] = 52766, + [SMALL_STATE(1630)] = 52785, + [SMALL_STATE(1631)] = 52802, + [SMALL_STATE(1632)] = 52821, + [SMALL_STATE(1633)] = 52840, + [SMALL_STATE(1634)] = 52857, + [SMALL_STATE(1635)] = 52874, + [SMALL_STATE(1636)] = 52893, + [SMALL_STATE(1637)] = 52910, + [SMALL_STATE(1638)] = 52927, + [SMALL_STATE(1639)] = 52946, + [SMALL_STATE(1640)] = 52965, + [SMALL_STATE(1641)] = 52980, + [SMALL_STATE(1642)] = 52995, + [SMALL_STATE(1643)] = 53014, + [SMALL_STATE(1644)] = 53031, + [SMALL_STATE(1645)] = 53048, + [SMALL_STATE(1646)] = 53065, + [SMALL_STATE(1647)] = 53082, + [SMALL_STATE(1648)] = 53099, + [SMALL_STATE(1649)] = 53116, + [SMALL_STATE(1650)] = 53133, + [SMALL_STATE(1651)] = 53152, + [SMALL_STATE(1652)] = 53169, + [SMALL_STATE(1653)] = 53188, + [SMALL_STATE(1654)] = 53205, + [SMALL_STATE(1655)] = 53224, + [SMALL_STATE(1656)] = 53241, + [SMALL_STATE(1657)] = 53258, + [SMALL_STATE(1658)] = 53277, + [SMALL_STATE(1659)] = 53294, + [SMALL_STATE(1660)] = 53311, + [SMALL_STATE(1661)] = 53328, + [SMALL_STATE(1662)] = 53347, + [SMALL_STATE(1663)] = 53364, + [SMALL_STATE(1664)] = 53381, + [SMALL_STATE(1665)] = 53400, + [SMALL_STATE(1666)] = 53419, + [SMALL_STATE(1667)] = 53434, + [SMALL_STATE(1668)] = 53449, + [SMALL_STATE(1669)] = 53466, + [SMALL_STATE(1670)] = 53483, + [SMALL_STATE(1671)] = 53502, + [SMALL_STATE(1672)] = 53521, + [SMALL_STATE(1673)] = 53538, + [SMALL_STATE(1674)] = 53555, + [SMALL_STATE(1675)] = 53572, + [SMALL_STATE(1676)] = 53589, + [SMALL_STATE(1677)] = 53606, + [SMALL_STATE(1678)] = 53623, + [SMALL_STATE(1679)] = 53642, + [SMALL_STATE(1680)] = 53661, + [SMALL_STATE(1681)] = 53680, + [SMALL_STATE(1682)] = 53699, + [SMALL_STATE(1683)] = 53716, + [SMALL_STATE(1684)] = 53731, + [SMALL_STATE(1685)] = 53750, + [SMALL_STATE(1686)] = 53767, + [SMALL_STATE(1687)] = 53784, + [SMALL_STATE(1688)] = 53801, + [SMALL_STATE(1689)] = 53818, + [SMALL_STATE(1690)] = 53835, + [SMALL_STATE(1691)] = 53852, + [SMALL_STATE(1692)] = 53869, + [SMALL_STATE(1693)] = 53888, + [SMALL_STATE(1694)] = 53907, + [SMALL_STATE(1695)] = 53924, + [SMALL_STATE(1696)] = 53941, + [SMALL_STATE(1697)] = 53960, + [SMALL_STATE(1698)] = 53975, + [SMALL_STATE(1699)] = 53992, + [SMALL_STATE(1700)] = 54011, + [SMALL_STATE(1701)] = 54030, + [SMALL_STATE(1702)] = 54049, + [SMALL_STATE(1703)] = 54068, + [SMALL_STATE(1704)] = 54085, + [SMALL_STATE(1705)] = 54104, + [SMALL_STATE(1706)] = 54119, + [SMALL_STATE(1707)] = 54136, + [SMALL_STATE(1708)] = 54153, + [SMALL_STATE(1709)] = 54172, + [SMALL_STATE(1710)] = 54191, + [SMALL_STATE(1711)] = 54210, + [SMALL_STATE(1712)] = 54227, + [SMALL_STATE(1713)] = 54246, + [SMALL_STATE(1714)] = 54263, + [SMALL_STATE(1715)] = 54280, + [SMALL_STATE(1716)] = 54297, + [SMALL_STATE(1717)] = 54312, + [SMALL_STATE(1718)] = 54331, + [SMALL_STATE(1719)] = 54350, + [SMALL_STATE(1720)] = 54367, + [SMALL_STATE(1721)] = 54386, + [SMALL_STATE(1722)] = 54405, + [SMALL_STATE(1723)] = 54424, + [SMALL_STATE(1724)] = 54441, + [SMALL_STATE(1725)] = 54460, + [SMALL_STATE(1726)] = 54477, + [SMALL_STATE(1727)] = 54494, + [SMALL_STATE(1728)] = 54513, + [SMALL_STATE(1729)] = 54532, + [SMALL_STATE(1730)] = 54547, + [SMALL_STATE(1731)] = 54564, + [SMALL_STATE(1732)] = 54579, + [SMALL_STATE(1733)] = 54598, + [SMALL_STATE(1734)] = 54617, + [SMALL_STATE(1735)] = 54636, + [SMALL_STATE(1736)] = 54655, + [SMALL_STATE(1737)] = 54674, + [SMALL_STATE(1738)] = 54691, + [SMALL_STATE(1739)] = 54710, + [SMALL_STATE(1740)] = 54727, + [SMALL_STATE(1741)] = 54741, + [SMALL_STATE(1742)] = 54755, + [SMALL_STATE(1743)] = 54769, + [SMALL_STATE(1744)] = 54785, + [SMALL_STATE(1745)] = 54801, + [SMALL_STATE(1746)] = 54817, + [SMALL_STATE(1747)] = 54833, + [SMALL_STATE(1748)] = 54847, + [SMALL_STATE(1749)] = 54863, + [SMALL_STATE(1750)] = 54877, + [SMALL_STATE(1751)] = 54893, + [SMALL_STATE(1752)] = 54909, + [SMALL_STATE(1753)] = 54925, + [SMALL_STATE(1754)] = 54941, + [SMALL_STATE(1755)] = 54957, + [SMALL_STATE(1756)] = 54971, + [SMALL_STATE(1757)] = 54987, + [SMALL_STATE(1758)] = 55003, + [SMALL_STATE(1759)] = 55019, + [SMALL_STATE(1760)] = 55035, + [SMALL_STATE(1761)] = 55051, + [SMALL_STATE(1762)] = 55067, + [SMALL_STATE(1763)] = 55083, + [SMALL_STATE(1764)] = 55099, + [SMALL_STATE(1765)] = 55113, + [SMALL_STATE(1766)] = 55129, + [SMALL_STATE(1767)] = 55143, + [SMALL_STATE(1768)] = 55159, + [SMALL_STATE(1769)] = 55175, + [SMALL_STATE(1770)] = 55189, + [SMALL_STATE(1771)] = 55205, + [SMALL_STATE(1772)] = 55221, + [SMALL_STATE(1773)] = 55237, + [SMALL_STATE(1774)] = 55251, + [SMALL_STATE(1775)] = 55265, + [SMALL_STATE(1776)] = 55281, + [SMALL_STATE(1777)] = 55297, + [SMALL_STATE(1778)] = 55313, + [SMALL_STATE(1779)] = 55327, + [SMALL_STATE(1780)] = 55341, + [SMALL_STATE(1781)] = 55357, + [SMALL_STATE(1782)] = 55371, + [SMALL_STATE(1783)] = 55387, + [SMALL_STATE(1784)] = 55403, + [SMALL_STATE(1785)] = 55419, + [SMALL_STATE(1786)] = 55433, + [SMALL_STATE(1787)] = 55449, + [SMALL_STATE(1788)] = 55465, + [SMALL_STATE(1789)] = 55479, + [SMALL_STATE(1790)] = 55493, + [SMALL_STATE(1791)] = 55509, + [SMALL_STATE(1792)] = 55525, + [SMALL_STATE(1793)] = 55541, + [SMALL_STATE(1794)] = 55557, + [SMALL_STATE(1795)] = 55573, + [SMALL_STATE(1796)] = 55587, + [SMALL_STATE(1797)] = 55603, + [SMALL_STATE(1798)] = 55617, + [SMALL_STATE(1799)] = 55631, + [SMALL_STATE(1800)] = 55647, + [SMALL_STATE(1801)] = 55663, + [SMALL_STATE(1802)] = 55679, + [SMALL_STATE(1803)] = 55695, + [SMALL_STATE(1804)] = 55709, + [SMALL_STATE(1805)] = 55723, + [SMALL_STATE(1806)] = 55737, + [SMALL_STATE(1807)] = 55753, + [SMALL_STATE(1808)] = 55767, + [SMALL_STATE(1809)] = 55783, + [SMALL_STATE(1810)] = 55797, + [SMALL_STATE(1811)] = 55811, + [SMALL_STATE(1812)] = 55825, + [SMALL_STATE(1813)] = 55841, + [SMALL_STATE(1814)] = 55855, + [SMALL_STATE(1815)] = 55871, + [SMALL_STATE(1816)] = 55887, + [SMALL_STATE(1817)] = 55903, + [SMALL_STATE(1818)] = 55919, + [SMALL_STATE(1819)] = 55935, + [SMALL_STATE(1820)] = 55949, + [SMALL_STATE(1821)] = 55963, + [SMALL_STATE(1822)] = 55979, + [SMALL_STATE(1823)] = 55995, + [SMALL_STATE(1824)] = 56009, + [SMALL_STATE(1825)] = 56023, + [SMALL_STATE(1826)] = 56037, + [SMALL_STATE(1827)] = 56053, + [SMALL_STATE(1828)] = 56069, + [SMALL_STATE(1829)] = 56085, + [SMALL_STATE(1830)] = 56099, + [SMALL_STATE(1831)] = 56115, + [SMALL_STATE(1832)] = 56129, + [SMALL_STATE(1833)] = 56145, + [SMALL_STATE(1834)] = 56159, + [SMALL_STATE(1835)] = 56175, + [SMALL_STATE(1836)] = 56191, + [SMALL_STATE(1837)] = 56205, + [SMALL_STATE(1838)] = 56221, + [SMALL_STATE(1839)] = 56237, + [SMALL_STATE(1840)] = 56253, + [SMALL_STATE(1841)] = 56267, + [SMALL_STATE(1842)] = 56283, + [SMALL_STATE(1843)] = 56299, + [SMALL_STATE(1844)] = 56313, + [SMALL_STATE(1845)] = 56329, + [SMALL_STATE(1846)] = 56343, + [SMALL_STATE(1847)] = 56359, + [SMALL_STATE(1848)] = 56375, + [SMALL_STATE(1849)] = 56391, + [SMALL_STATE(1850)] = 56405, + [SMALL_STATE(1851)] = 56421, + [SMALL_STATE(1852)] = 56437, + [SMALL_STATE(1853)] = 56453, + [SMALL_STATE(1854)] = 56467, + [SMALL_STATE(1855)] = 56481, + [SMALL_STATE(1856)] = 56495, + [SMALL_STATE(1857)] = 56511, + [SMALL_STATE(1858)] = 56525, + [SMALL_STATE(1859)] = 56539, + [SMALL_STATE(1860)] = 56555, + [SMALL_STATE(1861)] = 56571, + [SMALL_STATE(1862)] = 56585, + [SMALL_STATE(1863)] = 56601, + [SMALL_STATE(1864)] = 56615, + [SMALL_STATE(1865)] = 56631, + [SMALL_STATE(1866)] = 56647, + [SMALL_STATE(1867)] = 56663, + [SMALL_STATE(1868)] = 56677, + [SMALL_STATE(1869)] = 56693, + [SMALL_STATE(1870)] = 56709, + [SMALL_STATE(1871)] = 56723, + [SMALL_STATE(1872)] = 56739, + [SMALL_STATE(1873)] = 56755, + [SMALL_STATE(1874)] = 56769, + [SMALL_STATE(1875)] = 56785, + [SMALL_STATE(1876)] = 56801, + [SMALL_STATE(1877)] = 56815, + [SMALL_STATE(1878)] = 56829, + [SMALL_STATE(1879)] = 56845, + [SMALL_STATE(1880)] = 56859, + [SMALL_STATE(1881)] = 56873, + [SMALL_STATE(1882)] = 56889, + [SMALL_STATE(1883)] = 56903, + [SMALL_STATE(1884)] = 56917, + [SMALL_STATE(1885)] = 56931, + [SMALL_STATE(1886)] = 56945, + [SMALL_STATE(1887)] = 56961, + [SMALL_STATE(1888)] = 56977, + [SMALL_STATE(1889)] = 56993, + [SMALL_STATE(1890)] = 57007, + [SMALL_STATE(1891)] = 57021, + [SMALL_STATE(1892)] = 57035, + [SMALL_STATE(1893)] = 57049, + [SMALL_STATE(1894)] = 57065, + [SMALL_STATE(1895)] = 57081, + [SMALL_STATE(1896)] = 57097, + [SMALL_STATE(1897)] = 57111, + [SMALL_STATE(1898)] = 57127, + [SMALL_STATE(1899)] = 57143, + [SMALL_STATE(1900)] = 57157, + [SMALL_STATE(1901)] = 57171, + [SMALL_STATE(1902)] = 57187, + [SMALL_STATE(1903)] = 57201, + [SMALL_STATE(1904)] = 57217, + [SMALL_STATE(1905)] = 57231, + [SMALL_STATE(1906)] = 57245, + [SMALL_STATE(1907)] = 57261, + [SMALL_STATE(1908)] = 57277, + [SMALL_STATE(1909)] = 57293, + [SMALL_STATE(1910)] = 57309, + [SMALL_STATE(1911)] = 57323, + [SMALL_STATE(1912)] = 57337, + [SMALL_STATE(1913)] = 57351, + [SMALL_STATE(1914)] = 57367, + [SMALL_STATE(1915)] = 57383, + [SMALL_STATE(1916)] = 57399, + [SMALL_STATE(1917)] = 57413, + [SMALL_STATE(1918)] = 57429, + [SMALL_STATE(1919)] = 57445, + [SMALL_STATE(1920)] = 57461, + [SMALL_STATE(1921)] = 57475, + [SMALL_STATE(1922)] = 57491, + [SMALL_STATE(1923)] = 57507, + [SMALL_STATE(1924)] = 57523, + [SMALL_STATE(1925)] = 57537, + [SMALL_STATE(1926)] = 57551, + [SMALL_STATE(1927)] = 57567, + [SMALL_STATE(1928)] = 57581, + [SMALL_STATE(1929)] = 57597, + [SMALL_STATE(1930)] = 57611, + [SMALL_STATE(1931)] = 57625, + [SMALL_STATE(1932)] = 57641, + [SMALL_STATE(1933)] = 57657, + [SMALL_STATE(1934)] = 57673, + [SMALL_STATE(1935)] = 57687, + [SMALL_STATE(1936)] = 57703, + [SMALL_STATE(1937)] = 57717, + [SMALL_STATE(1938)] = 57733, + [SMALL_STATE(1939)] = 57749, + [SMALL_STATE(1940)] = 57763, + [SMALL_STATE(1941)] = 57777, + [SMALL_STATE(1942)] = 57793, + [SMALL_STATE(1943)] = 57807, + [SMALL_STATE(1944)] = 57823, + [SMALL_STATE(1945)] = 57839, + [SMALL_STATE(1946)] = 57853, + [SMALL_STATE(1947)] = 57869, + [SMALL_STATE(1948)] = 57882, + [SMALL_STATE(1949)] = 57895, + [SMALL_STATE(1950)] = 57908, + [SMALL_STATE(1951)] = 57921, + [SMALL_STATE(1952)] = 57934, + [SMALL_STATE(1953)] = 57947, + [SMALL_STATE(1954)] = 57960, + [SMALL_STATE(1955)] = 57973, + [SMALL_STATE(1956)] = 57986, + [SMALL_STATE(1957)] = 57999, + [SMALL_STATE(1958)] = 58012, + [SMALL_STATE(1959)] = 58025, + [SMALL_STATE(1960)] = 58038, + [SMALL_STATE(1961)] = 58051, + [SMALL_STATE(1962)] = 58064, + [SMALL_STATE(1963)] = 58077, + [SMALL_STATE(1964)] = 58090, + [SMALL_STATE(1965)] = 58103, + [SMALL_STATE(1966)] = 58116, + [SMALL_STATE(1967)] = 58129, + [SMALL_STATE(1968)] = 58142, + [SMALL_STATE(1969)] = 58155, + [SMALL_STATE(1970)] = 58168, + [SMALL_STATE(1971)] = 58181, + [SMALL_STATE(1972)] = 58194, + [SMALL_STATE(1973)] = 58207, + [SMALL_STATE(1974)] = 58220, + [SMALL_STATE(1975)] = 58233, + [SMALL_STATE(1976)] = 58246, + [SMALL_STATE(1977)] = 58259, + [SMALL_STATE(1978)] = 58272, + [SMALL_STATE(1979)] = 58285, + [SMALL_STATE(1980)] = 58298, + [SMALL_STATE(1981)] = 58311, + [SMALL_STATE(1982)] = 58324, + [SMALL_STATE(1983)] = 58337, + [SMALL_STATE(1984)] = 58350, + [SMALL_STATE(1985)] = 58363, + [SMALL_STATE(1986)] = 58376, + [SMALL_STATE(1987)] = 58389, + [SMALL_STATE(1988)] = 58402, + [SMALL_STATE(1989)] = 58415, + [SMALL_STATE(1990)] = 58428, + [SMALL_STATE(1991)] = 58441, + [SMALL_STATE(1992)] = 58454, + [SMALL_STATE(1993)] = 58467, + [SMALL_STATE(1994)] = 58480, + [SMALL_STATE(1995)] = 58493, + [SMALL_STATE(1996)] = 58506, + [SMALL_STATE(1997)] = 58519, + [SMALL_STATE(1998)] = 58532, + [SMALL_STATE(1999)] = 58545, + [SMALL_STATE(2000)] = 58558, + [SMALL_STATE(2001)] = 58571, + [SMALL_STATE(2002)] = 58584, + [SMALL_STATE(2003)] = 58597, + [SMALL_STATE(2004)] = 58610, + [SMALL_STATE(2005)] = 58623, + [SMALL_STATE(2006)] = 58636, + [SMALL_STATE(2007)] = 58649, + [SMALL_STATE(2008)] = 58662, + [SMALL_STATE(2009)] = 58675, + [SMALL_STATE(2010)] = 58688, + [SMALL_STATE(2011)] = 58701, + [SMALL_STATE(2012)] = 58714, + [SMALL_STATE(2013)] = 58727, + [SMALL_STATE(2014)] = 58740, + [SMALL_STATE(2015)] = 58753, + [SMALL_STATE(2016)] = 58766, + [SMALL_STATE(2017)] = 58779, + [SMALL_STATE(2018)] = 58792, + [SMALL_STATE(2019)] = 58805, + [SMALL_STATE(2020)] = 58818, + [SMALL_STATE(2021)] = 58831, + [SMALL_STATE(2022)] = 58844, + [SMALL_STATE(2023)] = 58857, + [SMALL_STATE(2024)] = 58870, + [SMALL_STATE(2025)] = 58883, + [SMALL_STATE(2026)] = 58896, + [SMALL_STATE(2027)] = 58909, + [SMALL_STATE(2028)] = 58922, + [SMALL_STATE(2029)] = 58935, + [SMALL_STATE(2030)] = 58948, + [SMALL_STATE(2031)] = 58961, + [SMALL_STATE(2032)] = 58974, + [SMALL_STATE(2033)] = 58987, + [SMALL_STATE(2034)] = 59000, + [SMALL_STATE(2035)] = 59013, + [SMALL_STATE(2036)] = 59026, + [SMALL_STATE(2037)] = 59039, + [SMALL_STATE(2038)] = 59052, + [SMALL_STATE(2039)] = 59065, + [SMALL_STATE(2040)] = 59078, + [SMALL_STATE(2041)] = 59091, + [SMALL_STATE(2042)] = 59104, + [SMALL_STATE(2043)] = 59117, + [SMALL_STATE(2044)] = 59130, + [SMALL_STATE(2045)] = 59143, + [SMALL_STATE(2046)] = 59156, + [SMALL_STATE(2047)] = 59169, + [SMALL_STATE(2048)] = 59182, + [SMALL_STATE(2049)] = 59195, + [SMALL_STATE(2050)] = 59208, + [SMALL_STATE(2051)] = 59221, + [SMALL_STATE(2052)] = 59234, + [SMALL_STATE(2053)] = 59247, + [SMALL_STATE(2054)] = 59260, + [SMALL_STATE(2055)] = 59273, + [SMALL_STATE(2056)] = 59286, + [SMALL_STATE(2057)] = 59299, + [SMALL_STATE(2058)] = 59312, + [SMALL_STATE(2059)] = 59325, + [SMALL_STATE(2060)] = 59338, + [SMALL_STATE(2061)] = 59351, + [SMALL_STATE(2062)] = 59364, + [SMALL_STATE(2063)] = 59377, + [SMALL_STATE(2064)] = 59390, + [SMALL_STATE(2065)] = 59403, + [SMALL_STATE(2066)] = 59416, + [SMALL_STATE(2067)] = 59429, + [SMALL_STATE(2068)] = 59442, + [SMALL_STATE(2069)] = 59455, + [SMALL_STATE(2070)] = 59468, + [SMALL_STATE(2071)] = 59481, + [SMALL_STATE(2072)] = 59494, + [SMALL_STATE(2073)] = 59507, + [SMALL_STATE(2074)] = 59520, + [SMALL_STATE(2075)] = 59533, + [SMALL_STATE(2076)] = 59546, + [SMALL_STATE(2077)] = 59559, + [SMALL_STATE(2078)] = 59572, + [SMALL_STATE(2079)] = 59585, + [SMALL_STATE(2080)] = 59598, + [SMALL_STATE(2081)] = 59611, + [SMALL_STATE(2082)] = 59624, + [SMALL_STATE(2083)] = 59637, + [SMALL_STATE(2084)] = 59650, + [SMALL_STATE(2085)] = 59663, + [SMALL_STATE(2086)] = 59676, + [SMALL_STATE(2087)] = 59689, + [SMALL_STATE(2088)] = 59702, + [SMALL_STATE(2089)] = 59715, + [SMALL_STATE(2090)] = 59728, + [SMALL_STATE(2091)] = 59741, + [SMALL_STATE(2092)] = 59754, + [SMALL_STATE(2093)] = 59767, + [SMALL_STATE(2094)] = 59780, + [SMALL_STATE(2095)] = 59793, + [SMALL_STATE(2096)] = 59806, + [SMALL_STATE(2097)] = 59819, + [SMALL_STATE(2098)] = 59832, + [SMALL_STATE(2099)] = 59845, + [SMALL_STATE(2100)] = 59858, + [SMALL_STATE(2101)] = 59871, + [SMALL_STATE(2102)] = 59884, + [SMALL_STATE(2103)] = 59897, + [SMALL_STATE(2104)] = 59910, + [SMALL_STATE(2105)] = 59923, + [SMALL_STATE(2106)] = 59936, + [SMALL_STATE(2107)] = 59949, + [SMALL_STATE(2108)] = 59962, + [SMALL_STATE(2109)] = 59975, + [SMALL_STATE(2110)] = 59988, + [SMALL_STATE(2111)] = 60001, + [SMALL_STATE(2112)] = 60014, + [SMALL_STATE(2113)] = 60027, + [SMALL_STATE(2114)] = 60040, + [SMALL_STATE(2115)] = 60044, }; static TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), [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(47), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), [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(674), - [20] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(465), - [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1164), - [26] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1506), - [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1371), - [32] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1125), - [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1222), - [38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1263), - [41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1755), + [17] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(677), + [20] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(462), + [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1176), + [26] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1663), + [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1352), + [32] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1128), + [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1230), + [38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1282), + [41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1763), [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), - [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2064), - [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2063), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2060), - [56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1105), - [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1123), - [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1517), - [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(101), - [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2051), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2046), - [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(171), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2036), - [80] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(936), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1805), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1996), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(169), + [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2070), + [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2069), + [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2066), + [56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1107), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1108), + [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1126), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1565), + [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(100), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2051), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2041), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(173), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2040), + [83] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(932), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1815), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2028), [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(168), [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(166), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(293), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1822), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(89), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2019), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2018), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1736), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1844), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1850), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(325), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(323), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(323), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(599), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(314), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(861), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(956), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(936), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2027), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(108), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(658), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1166), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(727), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1350), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(92), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(288), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(165), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(318), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1818), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(89), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2023), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2021), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1821), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1826), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1842), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(317), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(315), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(315), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(601), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(310), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(851), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(911), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(932), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1998), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(112), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(656), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1171), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(728), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1329), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(92), [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(285), [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(284), [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(283), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), - [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 80), - [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 80), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 80), - [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 80), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2097), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1861), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2105), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1965), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1788), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1968), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1893), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 32), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 32), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 32), SHIFT(1887), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 32), SHIFT(83), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 9), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 9), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 9), SHIFT(1887), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 9), SHIFT(83), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 96), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 96), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 102), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 102), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 57), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 57), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 57), SHIFT_REPEAT(1887), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 34), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 34), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 99), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 99), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 39), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 39), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 28), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 28), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 86), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 86), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 6), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 6), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 85), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 85), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 82), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 82), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 53), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 53), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 59), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 59), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 63), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 63), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 62), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 62), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 59), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 59), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 55), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 55), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 9), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 9), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 9), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 9), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 28), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 28), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 34), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 34), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 39), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 39), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 4), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 4), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 53), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 53), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 16), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 16), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 9), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 9), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 31), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 31), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 32), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 32), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 62), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 62), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 63), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 63), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 28), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 28), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 97), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 97), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 56), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 56), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 82), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 82), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 9), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 9), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 85), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 85), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 86), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 86), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 9), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 9), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, .production_id = 103), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, .production_id = 103), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 99), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 99), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 97), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 97), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 10, .production_id = 103), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 10, .production_id = 103), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 30), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 30), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 31), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 31), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 15), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 15), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 61), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 61), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 15), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 15), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 29), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 29), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 14), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 14), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 61), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 61), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 83), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 83), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 38), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 38), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 84), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 84), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 84), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 84), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 38), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 38), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 37), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 37), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(354), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(1395), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(1487), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(282), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 82), + [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 82), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 82), + [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 82), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2103), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1837), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2111), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1951), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1800), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1956), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1943), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 32), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 32), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 32), SHIFT(1746), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 32), SHIFT(83), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 9), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 9), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 9), SHIFT(1746), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 9), SHIFT(83), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 104), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 104), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 58), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 58), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 58), SHIFT_REPEAT(1746), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 98), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 98), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 28), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 28), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 101), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 101), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 34), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 34), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 63), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 63), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 39), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 39), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 6), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 6), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 88), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 88), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 87), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 87), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 84), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 84), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 54), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 54), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 60), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 60), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 64), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 64), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 56), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 56), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 9), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 9), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 9), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 9), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 28), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 28), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 34), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 34), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 39), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 39), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 4), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 4), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 54), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 54), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 9), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 9), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 31), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 31), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 32), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 32), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 60), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 60), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 63), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 63), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 64), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 64), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 28), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 28), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 6), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 6), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 99), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 99), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 57), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 57), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 9), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 9), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 84), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 84), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 87), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 87), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 88), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 88), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 9), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 9), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, .production_id = 105), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, .production_id = 105), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 101), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 101), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 99), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 99), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 10, .production_id = 105), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 10, .production_id = 105), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 31), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 31), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 30), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 30), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 62), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 62), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 29), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 29), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 62), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 62), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 15), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 15), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 15), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 15), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 14), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 14), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 86), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 86), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 85), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 85), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 86), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 86), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 38), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 38), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 38), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 38), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 37), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 37), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(355), + [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(1381), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2042), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 12), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 12), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 29), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 29), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 66), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 66), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 9), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 9), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 42), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 42), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 64), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 64), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 8), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 8), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 87), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 87), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 17), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 17), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 41), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 41), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 40), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 40), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 65), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 65), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 50), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 50), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 25), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 25), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1167), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(658), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1609), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1755), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(94), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2040), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(105), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(653), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1347), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 42), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 13), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 7, .production_id = 98), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 12), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 77), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 54), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 26), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 2), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 4), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 36), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 35), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 35), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 60), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 60), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 65), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 18), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 88), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 100), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 92), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 90), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 89), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(1433), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 12), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2042), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 12), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 66), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 66), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 41), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 41), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 67), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 67), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 65), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 65), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 8), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 8), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 50), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 50), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 89), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 89), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 42), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 42), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 40), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 40), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 9), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 9), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1172), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(656), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1564), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1763), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(94), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2037), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(105), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(649), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1320), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 29), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 29), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 25), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 25), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 17), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 17), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 13), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 26), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 35), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 35), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 36), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 42), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 55), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 61), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 61), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 2), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 79), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 4), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 66), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 12), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 7, .production_id = 100), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1112), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1107), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1108), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1113), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1109), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 18), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 49), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 79), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 78), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 102), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 90), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 91), [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 1), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 49), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 73), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 70), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 68), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 67), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1110), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1105), - [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1109), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1106), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 4), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1110), - [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1178), - [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1293), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1296), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1105), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1109), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1106), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1171), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 2), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), SHIFT_REPEAT(1166), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 4), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 4), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 3), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 3), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 75), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 74), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 101), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 95), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 101), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 52), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 16), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 76), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 51), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 4), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 27), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 52), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 95), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 94), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 93), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 52), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), SHIFT_REPEAT(1171), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 4), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2083), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1774), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1859), - [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(362), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 32), SHIFT(1766), - [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 32), SHIFT(84), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 9), SHIFT(1766), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 9), SHIFT(84), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(1956), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1378), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1118), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(1956), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1407), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1119), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 1), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(1956), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1182), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 57), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 57), SHIFT_REPEAT(1870), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 57), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1117), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 7), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2042), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 19), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 57), SHIFT_REPEAT(1766), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3, .production_id = 10), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4, .production_id = 10), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1162), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1239), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1567), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 6, .production_id = 58), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1715), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1712), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 6), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1175), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), - [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1305), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 5, .production_id = 58), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 5), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 33), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(925), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 33), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(154), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 22), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(136), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(746), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 72), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 48), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 47), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 9), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 9), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 20), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(132), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(320), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 46), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 43), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 30), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 30), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 81), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 21), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 45), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), - [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1346), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 10), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1704), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 24), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(174), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 23), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 81), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1163), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, .production_id = 10), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 5), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(130), - [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(354), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(1886), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 11), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 3), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2042), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 7), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 91), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 5), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 44), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 4, .production_id = 58), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 58), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 46), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 69), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 71), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 72), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(1886), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 47), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3777] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 92), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 81), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 80), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 94), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 74), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 68), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 71), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 69), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 4), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1112), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1180), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1266), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1277), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1107), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1108), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1113), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1109), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1169), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 2), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), SHIFT_REPEAT(1171), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 3), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 3), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 4), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 4), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 76), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 4), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 103), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 53), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 75), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 78), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 77), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 53), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 97), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 52), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 97), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 16), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 103), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 53), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 95), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 96), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 27), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 51), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), SHIFT_REPEAT(1169), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 4), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2089), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1828), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1779), + [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(361), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 32), SHIFT(1881), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 32), SHIFT(84), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 9), SHIFT(1881), + [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 9), SHIFT(84), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), + [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2057), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1121), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 58), SHIFT_REPEAT(1881), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1120), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1122), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 58), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 58), SHIFT_REPEAT(1754), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 58), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 19), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 1), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 7), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1393), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1183), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2057), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2042), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2057), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1385), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3, .production_id = 10), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1280), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4, .production_id = 10), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1255), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 5), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), + [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1174), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 5, .production_id = 59), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1517), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), + [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1725), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 6, .production_id = 59), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 6), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1721), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1185), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 73), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(126), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 48), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 9), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 9), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 46), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(132), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), + [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(328), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(744), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 83), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 45), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(153), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 43), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1366), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1661), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 47), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 24), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 23), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 33), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 5), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 20), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 83), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 21), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1173), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 22), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(129), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(355), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, .production_id = 10), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), + [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(176), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 33), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 10), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(920), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 30), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 30), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 11), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(1750), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2042), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 7), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 3), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 70), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 5), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 72), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 73), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 93), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 44), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(1750), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 47), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 4, .production_id = 59), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 46), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 59), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3802] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), }; #ifdef __cplusplus diff --git a/test/corpus/class.txt b/test/corpus/class.txt index 01c13a93..afa3626e 100644 --- a/test/corpus/class.txt +++ b/test/corpus/class.txt @@ -15,7 +15,7 @@ abstract class A { (program (php_tag) (class_declaration - (class_modifier) + (abstract_modifier) (name) (declaration_list (method_declaration @@ -25,7 +25,7 @@ abstract class A { (compound_statement) ) (method_declaration - (class_modifier) + (abstract_modifier) (visibility_modifier) (name) (formal_parameters) @@ -181,6 +181,7 @@ class Foo { public const B = 2; protected const C = 3; private const D = 4; + final const E = 5; } --- @@ -205,6 +206,10 @@ class Foo { (visibility_modifier) (const_element (name) (integer)) ) + (const_declaration + (final_modifier) + (const_element (name) (integer)) + ) ) ) ) @@ -223,7 +228,7 @@ final class A {} (program (php_tag) (class_declaration - (class_modifier) + (final_modifier) (name) (declaration_list) ) @@ -250,7 +255,7 @@ abstract class A { (program (php_tag) (class_declaration - (class_modifier) + (abstract_modifier) (name) (declaration_list (property_declaration @@ -262,12 +267,12 @@ abstract class A { (property_element (variable_name (name))) ) (method_declaration - (class_modifier) + (abstract_modifier) (name) (formal_parameters) ) (method_declaration - (class_modifier) + (final_modifier) (name) (formal_parameters) (compound_statement) @@ -279,7 +284,7 @@ abstract class A { (compound_statement) ) (method_declaration - (class_modifier) + (final_modifier) (static_modifier) (name) (formal_parameters)